Files

13 lines
255 B
Docker
Raw Permalink Normal View History

2021-11-30 21:31:48 +02:00
# syntax=docker/dockerfile:1
2026-03-18 13:03:50 +00:00
FROM python:3.15-rc-slim-trixie
2021-11-30 21:31:48 +02:00
WORKDIR /api
COPY requirements.txt requirements.txt
2021-12-02 18:18:27 +02:00
RUN pip3 install -r requirements.txt --no-cache-dir
2021-11-30 21:31:48 +02:00
COPY api/ .
2021-12-03 23:50:52 +02:00
CMD ["gunicorn", "--workers=1", "--bind", "0.0.0.0:5000", "spotify:app"]