I have a docker file that downloads and builds GTK from source, but the following line does not update my image environment variable:
RUN PATH="/opt/gtk/bin:$PATH" RUN export PATH
I read that I have to use ENV to set environment values, but the following instruction does not work either:
ENV PATH /opt/gtk/bin:$PATH
This is my entire Docker file:
FROM ubuntu RUN apt-get update RUN apt-get install -y golang gcc make wget git libxml2-utils libwebkit2gtk-3.0-dev libcairo2 libcairo2-dev libcairo-gobject2 shared-mime-info libgdk-pixbuf2.0-* libglib2-* libatk1.0-* libpango1.0-* xserver-xorg xvfb
docker dockerhub
ILikeTacos Nov 23 '14 at 19:58 2014-11-23 19:58
source share