inbox/Dockerfile

10 lines
208 B
Docker
Raw Normal View History

2023-10-03 15:50:09 +00:00
FROM python:slim
2023-10-03 14:15:17 +00:00
WORKDIR /app
2023-10-03 15:29:56 +00:00
2023-10-06 02:30:48 +00:00
EXPOSE 80
2023-10-06 02:31:25 +00:00
# ADD nginx.conf.sigil ./
2023-10-03 14:15:17 +00:00
COPY requirements.txt .
2023-10-04 17:14:06 +00:00
RUN apt-get update && apt-get install -y gcc && pip install -r requirements.txt
2023-10-03 14:15:17 +00:00
COPY . .
2023-10-03 15:29:56 +00:00
CMD ["python", "server.py"]