mirror of
https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
synced 2024-11-29 19:24:34 +01:00
Merge pull request #84 from tkhadimullin/patch-1
added basic Dockerfile
This commit is contained in:
commit
959a162d3c
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@ -0,0 +1,19 @@
|
||||
FROM python:3.9-alpine as base
|
||||
|
||||
RUN apk --update add git ffmpeg
|
||||
|
||||
FROM base as builder
|
||||
RUN mkdir /install
|
||||
WORKDIR /install
|
||||
COPY requirements.txt /requirements.txt
|
||||
RUN apk add gcc libc-dev zlib zlib-dev jpeg-dev \
|
||||
&& pip install --prefix="/install" -r /requirements.txt
|
||||
|
||||
|
||||
FROM base
|
||||
|
||||
COPY --from=builder /install /usr/local
|
||||
COPY src /app
|
||||
COPY zs_config.json /
|
||||
WORKDIR /app
|
||||
ENTRYPOINT ["/usr/local/bin/python", "app.py"]
|
Loading…
Reference in New Issue
Block a user