mirror of
https://github.com/Alvin-Zilverstand/novatorem.git
synced 2026-04-17 14:48:08 +02:00
13 lines
185 B
Docker
13 lines
185 B
Docker
|
|
# syntax=docker/dockerfile:1
|
||
|
|
|
||
|
|
FROM python:latest
|
||
|
|
|
||
|
|
WORKDIR /api
|
||
|
|
|
||
|
|
COPY requirements.txt requirements.txt
|
||
|
|
RUN pip3 install -r requirements.txt
|
||
|
|
|
||
|
|
COPY api/ .
|
||
|
|
|
||
|
|
CMD [ "python3", "spotify.py"]
|