mirror of
https://github.com/zotify-dev/zotify.git
synced 2026-01-10 05:38:01 -05:00
Upload New File
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
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 zotify /app
|
||||
WORKDIR /app
|
||||
ENTRYPOINT ["/usr/local/bin/python", "__main__.py"]
|
||||
Reference in New Issue
Block a user