docker-status/Dockerfile

10 lines
215 B
Docker
Raw Permalink Normal View History

2023-08-10 00:04:19 +00:00
FROM tecktron/python-waitress:slim
2023-08-08 23:56:22 +00:00
RUN pip install --upgrade pip
2023-08-09 00:14:57 +00:00
COPY ./requirements.txt .
2023-08-08 23:56:22 +00:00
RUN pip install -r requirements.txt
2023-08-09 10:02:01 +00:00
COPY ./docker_status /app/docker_status
WORKDIR /app
ENV APP_MODULE=docker_status:app