core/Dockerfile
2023-10-05 23:42:48 +03:00

11 lines
222 B
Docker

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