File size: 293 Bytes
62a097b
 
 
 
 
 
ff00f50
62a097b
ff00f50
62a097b
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.10

# Set up environment
WORKDIR /code
COPY . /code

# Install dependencies including 'spaces'
RUN pip install --upgrade pip
RUN pip install gradio==3.50.2 transformers torch accelerate spaces

# Expose the default Gradio port
EXPOSE 7860

# Run the app
CMD ["python", "app.py"]