You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN apt-get install -y git pkg-config clang cmake libfreetype6-dev
RUN apt-get install -y strace gdb
WORKDIR .
ADD ./arcan /arcan
ADD ./appl /arcan/docker/appl
RUN cd /arcan; mkdir build; cd build; cmake -DCLIENT_LIBRARY_BUILD=ON -DCMAKE_BUILD_TYPE=Debug ../src; make VERBOSE=1 ; make install ; cd .. ; rm -rf build;
RUN mkdir -p /arcan/docker/resources ; mv /arcan/data/resources /arcan/docker/resources
# add durden and console as the possible WMs
ADD ./durden/durden /arcan/docker/appl/durden
RUN mv /arcan/data/appl/console /arcan/docker/appl/console