calendar-fetcher/Dockerfile

19 lines
225 B
Docker
Raw Permalink Normal View History

2023-10-08 21:12:55 +00:00
FROM python:3
WORKDIR /
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 80
CMD ["python3", "webserver.py"]
ENV AM_I_IN_A_DOCKER_CONTAINER Yes
RUN date >/build-date.txt