forked from jesec/flood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
66 lines (47 loc) · 1.69 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
56
57
58
59
60
61
62
63
64
65
66
# WARNING:
#
# For development and debugging only. Use Dockerfile.release for production.
#
# This image bundles rTorrent for easier debugging. It is not started by default.
# Use --rtorrent argument if you wish to start the bundled rTorrent.
# For production, use rtorrent-flood instead.
#
# This Dockerfile uses contents of current folder which might contain
# secrets, uncommitted changes or other sensitive information. DO NOT
# publish the result image unless it was composed in a clean environment.
ARG BUILDPLATFORM=amd64
ARG NODE_IMAGE=docker.io/node:alpine
FROM --platform=$BUILDPLATFORM ${NODE_IMAGE} AS nodebuild
WORKDIR /usr/src/app/
# Copy project files
COPY . ./
RUN corepack enable && corepack install
# Fetch dependencies from npm
RUN pnpm install --frozen-lockfile
# Build assets
RUN npm run build
# Now get the clean Node.js image
FROM ${NODE_IMAGE} AS flood
WORKDIR /usr/src/app/
# Copy sources
COPY --from=nodebuild /usr/src/app ./
# Install runtime dependencies
RUN apk --no-cache add \
mediainfo
# Create "download" user
RUN adduser -h /home/download -s /sbin/nologin --disabled-password download
# Run as "download" user
USER download
# Expose port 3000 and 4200
EXPOSE 3000
EXPOSE 4200
# Flood server in development mode
ENTRYPOINT ["npm", "--prefix=/usr/src/app/", "run", "start", "--", "--host=0.0.0.0"]
# Then, to start a debugging session of frontend:
# docker exec -it ${container_id} npm --prefix=/usr/src/app/ run start:development:client
# rtorrent-flood image
FROM docker.io/jesec/rtorrent:master AS rtorrent
FROM flood AS rtorrent-flood
# Copy rTorrent
COPY --from=rtorrent / /
ENTRYPOINT ["npm", "--prefix=/usr/src/app/", "run", "start", "--", "--host=0.0.0.0", "--rtorrent"]