aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: e46da8ac970557e96182aeed1cc1fd595a5e44b2 (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
45
46
# 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:14.17.6-buster as builder

# TODO: Need to setup a non-root user for security purposes

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 node-gyp@8.1.0 \
  && npm i -g lerna@4.0.0

COPY . .

# Note: Ideally this needs to be done before the COPY step - BUT moving this here resolves the issue with `preval-build-info-cli` not being found
RUN npx lerna bootstrap

RUN cd recipes \
  && npm i \
  && npm run package \
  && cd ..

RUN npm run build

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

FROM docker.io/library/busybox

# TODO: Need to setup a non-root user for security purposes

WORKDIR /ferdi

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

VOLUME [ "/ferdi-out" ]