You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.0 KiB
Docker
49 lines
1.0 KiB
Docker
FROM alpine:latest as frontend
|
|
|
|
RUN apk add --no-cache \
|
|
npm
|
|
|
|
RUN npm install -g @angular/cli
|
|
|
|
WORKDIR /build
|
|
COPY [ "package.json", "package-lock.json", "/build/" ]
|
|
RUN npm install
|
|
|
|
COPY [ "angular.json", "tsconfig.json", "/build/" ]
|
|
COPY [ "src/", "/build/src/" ]
|
|
RUN npm run build
|
|
|
|
#--------------#
|
|
|
|
FROM alpine:latest
|
|
|
|
ENV UID=1000 \
|
|
GID=1000 \
|
|
USER=youtube
|
|
|
|
ENV NO_UPDATE_NOTIFIER=true
|
|
|
|
RUN addgroup -S $USER -g $GID && adduser -D -S $USER -G $USER -u $UID
|
|
|
|
RUN apk add --no-cache \
|
|
ffmpeg \
|
|
npm \
|
|
python2 \
|
|
python3 \
|
|
su-exec \
|
|
&& apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
|
atomicparsley
|
|
|
|
WORKDIR /app
|
|
COPY --chown=$UID:$GID [ "backend/package.json", "backend/package-lock.json", "/app/" ]
|
|
ENV PM2_HOME=/app/pm2
|
|
RUN npm install pm2 -g
|
|
RUN npm install && chown -R $UID:$GID ./
|
|
|
|
COPY --chown=$UID:$GID --from=frontend [ "/build/backend/public/", "/app/public/" ]
|
|
COPY --chown=$UID:$GID [ "/backend/", "/app/" ]
|
|
|
|
EXPOSE 17442
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|
|
CMD [ "pm2-runtime", "pm2.config.js" ]
|