-
David Schmitz authored
Dockerfiles: fixed inline docu of 2-step docker builds to reflect renamed file names; updated docu of FoD Dockerfile installation
David Schmitz authoredDockerfiles: fixed inline docu of 2-step docker builds to reflect renamed file names; updated docu of FoD Dockerfile installation
Dockerfile.debian.base 794 B
#use (from main dir): docker build -f ./Dockerfiles.d/Dockerfile.debian.base -t fodpy3_debian_base . && docker build -f ./Dockerfiles.d/Dockerfile.debian.step2 -t fodpy3_debian .
##
#docker_label: fodpy3_debian_base
FROM debian:buster
##
ENV LC_ALL en_US.utf8
RUN apt-get update
RUN echo "Set up container's locales"
RUN echo -e 'LANG="en_US.UTF-8"\nLANGUAGE="en_US"\n' > /etc/default/locale
RUN echo "en_US.utf8 UTF-8" >> /etc/locale.gen
RUN apt-get -qqy install locales
RUN mkdir -p /var/log/fod /srv
#COPY . /srv/flowspy
COPY install-debian.sh requirements.txt /srv/flowspy/
RUN apt-get -qqy install patch
#RUN (cd /srv/flowspy; ./install-debian.sh;)
RUN (cd /srv/flowspy; ./install-debian.sh --basesw;)
#EXPOSE 8000
#CMD [ "/srv/flowspy/runfod.sh" ]
CMD [ "sleep" "10000000" ]