inbox/Dockerfile

10 lines
168 B
Docker
Raw Normal View History

2023-10-03 15:48:02 +00:00
FROM python:3.8-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 .
RUN pip install -r requirements.txt
COPY . .
2023-10-03 15:29:56 +00:00
CMD ["python", "server.py"]