Files
helloasso/api/Dockerfile

11 lines
182 B
Docker
Raw Normal View History

2025-12-05 09:54:35 +01:00
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"]