RBO-Player-VV20 / Dockerfile
Peeble's picture
Create Dockerfile
3ee0bd0 verified
raw
history blame contribute delete
285 Bytes
# Use an official Python runtime as base
FROM python:3.9
# Set working directory
WORKDIR /app
# Copy all files
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose port for Gradio
EXPOSE 7860
# Run the RBO Player
CMD ["python", "app.py"]