Files
helloasso/api/Dockerfile
2025-12-05 09:54:35 +01:00

11 lines
182 B
Docker

FROM python:latest
WORKDIR /app
COPY . /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]