inbox/Dockerfile
2023-10-03 18:50:09 +03:00

11 lines
201 B
Docker

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