inbox/Dockerfile

10 lines
164 B
Docker
Raw Normal View History

2023-10-03 14:15:17 +00:00
FROM python:slim
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"]