Files
novatorem/Dockerfile
T

13 lines
242 B
Docker
Raw Normal View History

2021-11-30 21:31:48 +02:00
# syntax=docker/dockerfile:1
2026-02-11 19:17:05 +00:00
FROM python:3.14.3
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"]