added flask to docker

This commit is contained in:
Eljakim Herrewijnen 2024-03-07 23:12:14 +01:00
parent f3c9ada87b
commit f701e55e9b
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@ WORKDIR /app
ADD . /app
# Install any needed packages specified in requirements.txt
# RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Make port 80 available to the world outside this container
EXPOSE 80

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
Flask==2.2.2