1
Fork 0
mirror of https://github.com/wlinator/keep-online-docker.git synced 2024-10-02 08:59:07 +00:00
keep-online-docker/Dockerfile

12 lines
198 B
Docker
Raw Permalink Normal View History

2024-05-07 09:44:31 +00:00
FROM python:3.11
ARG DEBIAN_FRONTEND=noninteractive
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./keeponline.py" ]