File size: 295 Bytes
8ffebd2
 
 
 
 
 
 
 
 
 
67f0e42
8ffebd2
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.8-slim 

# Set working directory
WORKDIR /app

# Copy your application code (scripts, notebooks)
COPY . .

RUN pip install -r requirements.txt

EXPOSE 8080

# Command to run your application (replace with your actual command)
CMD ["python", "plot_based_recommender_supabase.py"]