8 lines
202 B
Docker
8 lines
202 B
Docker
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"] |