-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Dockerfile
44 lines (26 loc) · 1.21 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
# Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture
FROM docker.io/library/node:18.0.0-buster as builder
ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share"
ARG DEBIAN_FRONTEND=noninteractive
# Note: This is added for building on ARM machines
ARG USE_SYSTEM_FPM=true
# Note: Added to bypass the error with missing git repo information for the 'preval-build-info' module
ARG PREVAL_BUILD_INFO_PLACEHOLDERS=true
RUN apt-get update -y \
&& apt-get install --no-install-recommends -y rpm ruby gem \
&& gem install fpm --no-ri --no-rdoc --no-document
WORKDIR /usr/src/ferdi
RUN npm i -g [email protected] [email protected]
COPY package*.json ./
RUN npm i
COPY . .
WORKDIR /usr/src/ferdi/recipes
RUN pnpm i \
&& pnpm run package
WORKDIR /usr/src/ferdi
RUN npm run build
# --------------------------------------------------------------------------------------------
FROM docker.io/library/busybox:latest
WORKDIR /ferdi
COPY --from=builder /usr/src/ferdi/out/* /ferdi/
VOLUME [ "/ferdi-out" ]