Spaces:
Runtime error
Runtime error
File size: 351 Bytes
793dbb6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Use the PyTorch base image
FROM pytorch/pytorch:latest
# Set the working directory inside the container
WORKDIR /app
# Copy the current directory into the container
COPY . /app
# Install necessary Python packages
RUN pip install -e .[gradio]
# Set the entrypoint for the container to launch your Gradio app
CMD ["python", "demo/app_januspro.py"] |