v0.9.0 - Creating Docker
This commit is contained in:
6
.dockerignore
Normal file
6
.dockerignore
Normal file
@@ -0,0 +1,6 @@
|
||||
__pycache__
|
||||
*.pyc
|
||||
venv
|
||||
.git
|
||||
*.db
|
||||
```
|
||||
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM python:3.13-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["python", "app.py"]
|
||||
```
|
||||
@@ -1,2 +1,2 @@
|
||||
Flask==3.0.0
|
||||
Werkzeug==3.0.1
|
||||
Flask==3.1.2
|
||||
Werkzeug==3.1.5
|
||||
Reference in New Issue
Block a user