inbox/Dockerfile

11 lines
201 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 15:50:09 +00:00
RUN apt update && apt install -y gcc
2023-10-03 14:15:17 +00:00
RUN pip install -r requirements.txt
COPY . .
2023-10-03 15:29:56 +00:00
CMD ["python", "server.py"]