Files
SPARC/Dockerfile
T
0xWheatyz 5fab53e0a7
Build and Push Docker Image / build-and-push (push) Failing after 31m46s
fix: changed dockerfile base to alpine python
2026-03-06 03:38:27 +00:00

17 lines
185 B
Docker

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