forked from 0xWheatyz/SPARC
feat: Docker integration
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
|||||||
|
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"]
|
||||||
|
|
||||||
Reference in New Issue
Block a user