Files
Zo0 0ddf71619c
Some checks failed
Build kpatch / build (push) Has been cancelled
Deploy to mirrored Host / deploy (push) Has been cancelled
Dockerized PSFree setup + README update
2026-02-01 07:19:31 +00:00

18 lines
375 B
Docker

# 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"]