Files
SekiPOS/Dockerfile
Shiro-Nek0 bc02d4c3a8 docker + go
2026-02-25 23:54:30 -03:00

11 lines
149 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]