mirror of
https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
synced 2026-01-06 23:20:31 +00:00
Merge pull request #84 from tkhadimullin/patch-1
added basic Dockerfile
This commit is contained in:
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"]
|
||||
Reference in New Issue
Block a user