docker-status/Dockerfile
2023-08-09 01:56:22 +02:00

9 lines
194 B
Docker

FROM python:3-alpine
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
CMD ["waitress-serve", "--host", "0.0.0.0", "--port", "1111", "docker_status:app"]