inbox/Dockerfile
2023-10-06 05:30:48 +03:00

10 lines
206 B
Docker

FROM python:slim
WORKDIR /app
EXPOSE 80
ADD nginx.conf.sigil ./
COPY requirements.txt .
RUN apt-get update && apt-get install -y gcc && pip install -r requirements.txt
COPY . .
CMD ["python", "server.py"]