core/Dockerfile
Untone 0ad44a944e
Some checks failed
Deploy to discoursio-api / deploy (push) Failing after 1m22s
Revert ".."
This reverts commit fbd0e03a33.
2024-08-06 21:01:03 +03:00

12 lines
215 B
Docker

FROM python:slim
WORKDIR /app
EXPOSE 8080
ADD nginx.conf.sigil ./
COPY requirements.txt .
RUN apt update && apt install -y git gcc curl postgresql
RUN pip install -r requirements.txt
COPY . .
CMD python server.py