Added docker files for remote

This commit is contained in:
2025-08-13 16:51:59 +10:00
parent d743e5610a
commit 692a160972
3 changed files with 30 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Use a full Python runtime image to ensure necessary build tools are available.
FROM python
# Set the working directory to organize application files.
WORKDIR /app
# Copy requirements file to allow pip to find dependencies during build.
COPY requirements.txt /app/
# Install Python dependencies for the application to run correctly.
RUN pip install --no-cache-dir -r requirements.txt