SPARC/Dockerfile

17 lines
174 B
Docker

FROM python:3.14
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN useradd app
USER app
CMD ["python3", "main.py"]