forked from alexta69/metube
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
47 lines (37 loc) · 1.51 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM node:lts-alpine as builder
WORKDIR /metube
COPY ui ./
RUN npm ci && \
export NODE_OPTIONS=--max_old_space_size=2000 && \
node_modules/.bin/ng build --configuration production
FROM python:3.11-alpine
WORKDIR /app
COPY Pipfile* docker-entrypoint.sh ./
# Use sed to strip carriage-return characters from the entrypoint script (in case building on Windows)
# Install dependencies
RUN wget -qO- https://github.com/yifeikong/curl-impersonate/releases/download/v0.8.2/libcurl-impersonate-v0.8.2.$(uname -m)-linux-musl.tar.gz |tar xvz -C /lib
RUN sed -i 's/\r$//g' docker-entrypoint.sh && \
chmod +x docker-entrypoint.sh && \
apk add --update aria2 coreutils shadow su-exec curl tini && \
apk add --update --virtual .build-deps gcc g++ musl-dev && \
pip install --no-cache-dir pipenv curl_cffi==0.7.1&& \
pipenv install --system --deploy --clear && \
pip uninstall pipenv -y && \
apk del .build-deps && \
rm -rf /var/cache/apk/* && \
mkdir /.cache && chmod 777 /.cache
COPY app ./app
COPY --from=builder /metube/dist/metube ./ui/dist/metube
COPY --from=mwader/static-ffmpeg:7.1 /ffmpeg /usr/local/bin/
COPY --from=mwader/static-ffmpeg:7.1 /ffprobe /usr/local/bin/
RUN chmod -R 755 ./app && \
chmod 755 ./docker-entrypoint.sh
ENV UID=1000
ENV GID=1000
ENV UMASK=022
ENV DOWNLOAD_DIR /downloads
ENV STATE_DIR /downloads/.metube
ENV TEMP_DIR /downloads
VOLUME /downloads
EXPOSE 8090
ENTRYPOINT ["/sbin/tini", "-g", "--", "./docker-entrypoint.sh"]