diff --git a/Dockerfile b/Dockerfile index 792b0c7..8a30429 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c9edc1a --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +Flask==2.2.2