feat: Docker integration
This commit is contained in:
parent
a65c267687
commit
dc7eedd902
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -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"]
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user