We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dec3ac commit 88e329dCopy full SHA for 88e329d
Dockerfile
@@ -2,11 +2,11 @@ FROM python:3.9-buster
2
3
WORKDIR /app
4
5
-COPY ./rates/requirements.txt /app
+COPY ./rates/requirements.txt.lock /app
6
7
# Install Gunicorn and any needed packages specified in requirements.txt
8
RUN pip install --no-cache-dir gunicorn && \
9
- pip install --no-cache-dir -r requirements.txt
+ pip install --no-cache-dir -r requirements.txt.lock
10
11
COPY ./rates /app
12
# Make port 8000 available to the world outside this container
rates/requirements.txt.lock
@@ -0,0 +1,10 @@
1
+blinker==1.6.2
+click==8.1.7
+Flask==3.0.0
+importlib-metadata==6.8.0
+itsdangerous==2.1.2
+Jinja2==3.1.2
+MarkupSafe==2.1.3
+psycopg2-binary==2.9.8
+Werkzeug==3.0.0
+zipp==3.17.0
0 commit comments