Upload files to "/"

This commit is contained in:
2026-04-15 10:04:24 +00:00
parent 3d4c1b5080
commit 44b14bcfc5
2 changed files with 17 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN python -m pip install --no-cache-dir --upgrade pip \
&& python -m pip install --no-cache-dir -r /app/requirements.txt \
&& python -m pip show Flask
COPY . /app
EXPOSE 5000
CMD ["python", "app.py"]

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
Flask==3.1.3
ruff