-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
38 lines (30 loc) · 1.12 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
################################################################
# BUILD STAGE 0
################################################################
FROM node:18-slim AS stage-basic
################################################
# ARGUMENTS
################################################
ARG USER
ARG WORKDIR
################################################
# INSTALL BASICS FOR SYSTEM
################################################
RUN apt-get update && apt-get install -y make \
&& rm -rf /var/lib/apt/lists/*
################################################
# SET USERS, ACCESS
################################################
# Create a non-privileged user to run the bot.
RUN groupadd --gid 2000 ${USER} \
&& useradd --uid 2000 --gid 2000 --create-home ${USER}
# Running instance should own the code, as `make build` leads to changess.
COPY . "${WORKDIR}"
RUN chown -R ${USER}:${USER} ${WORKDIR}
USER ${USER}
WORKDIR ${WORKDIR}
################################################################
# BUILD STAGE 1
################################################################
FROM stage-basic AS stage-build
RUN make build