core/Dockerfile
2024-01-24 10:59:34 +03:00

10 lines
182 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
RUN pip install -r requirements.txt
COPY . .