core/Dockerfile

10 lines
186 B
Docker

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