inbox/Dockerfile
2023-10-06 05:31:25 +03:00

10 lines
208 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"]