Files
healthcheck-mail-receiver/Dockerfile
2019-09-07 13:57:34 +02:00

10 lines
156 B
Docker

FROM python:3.7
WORKDIR /app
COPY receiver.py .
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
CMD ["python", "/app/receiver.py"]