Initial commit

This commit is contained in:
2026-07-29 19:24:59 +03:00
commit 897af73757
9 changed files with 311 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p /data
ENV DATABASE_PATH=/data/inventory.db
ENV FLASK_APP=app.py
EXPOSE 5000
CMD ["python", "app.py"]