Skip to content
Snippets Groups Projects
Commit f7a54104 authored by Chris Hines's avatar Chris Hines
Browse files

Update Dockerfile

parent 53d733ab
No related branches found
No related tags found
3 merge requests!77Revert "disable agressive kill and restart",!45Test,!44Dev
Pipeline #11387 failed
FROM ubuntu
WORKDIR /opt/strudel2/src
COPY . /opt/strudel2/src
RUN apt update
RUN apt install -y python3 gcc python3-pip
RUN apt install -y openssh-client
RUN pip3 install -r requirements.txt
RUN python3 ./setup.py install
RUN apt update && apt install -y python3 gcc python3-pip openssh-client
RUN set -x \
&& addgroup -g 33 -S www-data \
&& adduser -u 33 -D -S -G www-data www-data
RUN pip3 install -r requirements.txt && python3 ./setup.py install
EXPOSE 8080 8090
CMD ["./runscript"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment