# Use a specific version for the base image FROM python:3.8 # Set a working directory in the container WORKDIR /app # Install dependencies RUN pip install mediaflow_proxy # Copy application files to the container at /app COPY . /app # Expose the desired port EXPOSE 8080 # Command to run the script CMD ["mediaflow-proxy"]