song-recommender / Dockerfile
jrno's picture
Add dockerfile
f6b6982
raw
history blame
No virus
109 Bytes
FROM python:3.10.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "server.py"]