Walter Mantovani commited on
Commit ·
f074dfd
1
Parent(s): 5939159
UPD
Browse files- Dockerfile +2 -0
- requirements.txt +1 -0
Dockerfile
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
# Use the official Python 3.9 image
|
| 2 |
FROM python:3.12
|
| 3 |
|
|
|
|
|
|
|
| 4 |
# Set the working directory to /code
|
| 5 |
WORKDIR /code
|
| 6 |
|
|
|
|
| 1 |
# Use the official Python 3.9 image
|
| 2 |
FROM python:3.12
|
| 3 |
|
| 4 |
+
ARG PIPPO
|
| 5 |
+
|
| 6 |
# Set the working directory to /code
|
| 7 |
WORKDIR /code
|
| 8 |
|
requirements.txt
CHANGED
|
@@ -1,3 +1,4 @@
|
|
| 1 |
Flask
|
| 2 |
Flask-SQLAlchemy
|
| 3 |
sqlalchemy-serializer
|
|
|
|
|
|
| 1 |
Flask
|
| 2 |
Flask-SQLAlchemy
|
| 3 |
sqlalchemy-serializer
|
| 4 |
+
gunicorn
|