core/Dockerfile
2024-12-21 23:31:19 +03:00

12 lines
220 B
Docker

FROM python:3.11-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