Test_Johanne/Dockerfile

8 lines
202 B
Docker
Raw Permalink Normal View History

2025-03-06 10:35:42 +01:00
FROM ubuntu:22.04
RUN apt-get update && apt-get -y install python3-pip git libpq-dev
ADD . /opt/otree
WORKDIR /opt/otree
RUN pip3 install -r requirements.txt
CMD ["otree", "prodserver", "8000"]