Téléverser les fichiers vers "/"

This commit is contained in:
Johanne TROTIN 2025-03-30 17:41:19 +02:00
parent 5c9ef505ca
commit b634a59951

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
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"]