mirror of
https://github.com/Alvin-Zilverstand/novatorem.git
synced 2026-03-06 11:07:09 +01:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-LIBWEBP-5893094 - https://snyk.io/vuln/SNYK-DEBIAN11-LIBWEBP-5893094 - https://snyk.io/vuln/SNYK-DEBIAN11-LIBWEBP-5893094
13 lines
242 B
Docker
13 lines
242 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.14.3
|
|
|
|
WORKDIR /api
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt --no-cache-dir
|
|
|
|
COPY api/ .
|
|
|
|
CMD ["gunicorn", "--workers=1", "--bind", "0.0.0.0:5000", "spotify:app"]
|