Files
port-ui/Dockerfile
Kevin Veen-Birkenbach 5fc19f6ccb Solved other port bugs
2025-07-05 10:55:32 +02:00

16 lines
349 B
Docker

# Base image for Python
FROM python:slim
# Set the working directory
WORKDIR /app
# Copy and install dependencies
COPY app/requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY app/ .
# Start command using shell to allow env substitution
CMD sh -c "exec python app.py --port=\${PORT}"