summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: f09ae8fb8569b14b02d860f27a15c76ee7001278 (plain) (blame)
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:16.14.2-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/ferdium

RUN npm i -g npm@8.7.0 pnpm@6.32.8

COPY package*.json ./

RUN npm i

COPY . .

WORKDIR /usr/src/ferdium/recipes

RUN pnpm i \
  && pnpm package

WORKDIR /usr/src/ferdium

RUN npm run build

# --------------------------------------------------------------------------------------------

FROM docker.io/library/busybox:latest

WORKDIR /ferdium

COPY --from=builder /usr/src/ferdium/out/* /ferdium/

VOLUME [ "/ferdium-out" ]