Dockerized PSFree setup + README update
Some checks failed
Build kpatch / build (push) Has been cancelled
Deploy to mirrored Host / deploy (push) Has been cancelled

This commit is contained in:
Zo0
2026-02-01 07:19:31 +00:00
parent ab49252161
commit 0ddf71619c
4 changed files with 161 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# Use official Python 3.10 slim image
FROM python:3.10-slim
# Set working directory
WORKDIR /PSFree
# Copy all files/folders from current directory into /PSFree
COPY . /PSFree
# Install required packages
RUN pip install --no-cache-dir rich
# Expose your app port (adjust if your app uses a different port)
EXPOSE 52721
# Run the python server
CMD ["python", "serve.py"]