inbox/Dockerfile
2023-10-06 05:40:37 +03:00

9 lines
182 B
Docker

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