This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
rebble-weather/Dockerfile
2024-06-25 12:13:20 -06:00

5 lines
110 B
Docker

FROM python:3.6-alpine
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD flask run -h 0.0.0.0