inbox/Dockerfile
2023-10-04 20:14:06 +03:00

10 lines
208 B
Docker

FROM python:slim
WORKDIR /app
EXPOSE 8080
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"]