core/Dockerfile
2023-10-05 22:19:20 +03:00

10 lines
185 B
Docker

FROM python:slim
WORKDIR /app
EXPOSE 8080
ADD nginx.conf.sigil ./
COPY requirements.txt .
RUN apt update && apt install -y build-essential
RUN pip install -r requirements.txt
COPY . .