hns-login/Dockerfile

7 lines
184 B
Docker
Raw Normal View History

2024-02-09 23:04:20 +11:00
FROM python:3.10-bullseye
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
COPY . .
VOLUME /app/instance
CMD ["flask", "run", "-p", "9090", "-h", "0.0.0.0"]