Files
SPARC/Dockerfile
T
0xWheatyz 11a4aba46f
Build and Push Docker Image / build-and-push (push) Successful in 22m1s
fix(dockerfile): was expecting ubuntu like syntax for user management
2026-03-05 23:17:30 -05:00

13 lines
158 B
Docker

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