inbox/Dockerfile

10 lines
200 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
EXPOSE 8080
ADD nginx.conf.sigil ./
2023-10-03 14:15:17 +00:00
COPY requirements.txt .
2023-10-03 16:48:16 +00:00
RUN apt update && apt 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"]