create dockerfile to use for deployment

This commit is contained in:
Jack Case
2025-10-22 17:40:34 +00:00
parent 3b34df1196
commit a80ca5e37d
2 changed files with 9 additions and 1 deletions

6
dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.12
COPY slopserver/ requirements.txt /slopserver/
WORKDIR /slopserver/
RUN python3 -m pip install -r requirements.txt