Files
novatorem/Dockerfile
T

13 lines
200 B
Docker
Raw Normal View History

2021-11-30 21:31:48 +02:00
# syntax=docker/dockerfile:1
2021-12-02 18:18:27 +02:00
FROM python:3.10.0
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/ .
CMD [ "python3", "spotify.py"]