-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Dockerfile
55 lines (40 loc) · 1.83 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
48
49
50
51
52
53
54
55
# Base will install runtime dependencies and configure generics
FROM node:16-slim as base
LABEL maintainer="Marko Kajzer <markokajzer91@gmail.com>, Nico Stapelbroek <discord-soundbot@nstapelbroek.com>"
RUN mkdir /app && chown -R node:node /app
WORKDIR /app
# Add `tiny` init for signal forwarding
RUN apt-get -qq update > /dev/null && \
apt-get -qq -y install wget > /dev/null && \
rm -rf /var/lib/apt/lists
RUN wget -qO /tini https://github.com/krallin/tini/releases/download/v0.18.0/tini-$(dpkg --print-architecture) && \
chmod +x /tini
####################################################################################################
# Builder will install system dependencies
FROM base as builder
# Install ffmpeg and other deps
RUN apt-get -qq update > /dev/null && \
apt-get -qq -y install git g++ make python3.11 tar xz-utils > /dev/null && \
rm -rf /var/lib/apt/lists
RUN wget -qO /tmp/ffmpeg.tar.xz https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-$(dpkg --print-architecture)-static.tar.xz && \
tar -x -C /usr/local/bin --strip-components 1 -f /tmp/ffmpeg.tar.xz --wildcards '*/ffmpeg' && \
rm /tmp/ffmpeg.tar.xz
####################################################################################################
# Build will compile ts to js
FROM builder AS build
# Copy files
COPY --chown=node:node . /app
# Install compile dependencies
RUN npm install && \
npm cache clean --force
# Build project
RUN npm run build
####################################################################################################
# release has the bare minimum to run the application
FROM base as release
COPY --from=build --chown=node:node /usr/local/bin/ffmpeg /usr/local/bin/ffmpeg
COPY --from=build --chown=node:node /app .
USER node
ENV NODE_ENV=production
ENTRYPOINT ["/tini", "--"]
CMD ["npm", "run", "serve"]