15 lines
289 B
Docker
15 lines
289 B
Docker
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
|
|
|
|
EXPOSE 5000
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--access-logfile", "-", "app:app"]
|