Skip to content
Snippets Groups Projects
Dockerfile 260 B
Newer Older
Chris Hines's avatar
Chris Hines committed
FROM ubuntu
WORKDIR /opt/strudel2/src
COPY . /opt/strudel2/src
Chris Hines's avatar
Chris Hines committed
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
Chris Hines's avatar
Chris Hines committed
EXPOSE 8080 8090
Chris Hines's avatar
Chris Hines committed
CMD ["./runscript"]