Skip to content

Commit

Permalink
Merge pull request #344 from kikkomep/build/arm64-docker-image
Browse files Browse the repository at this point in the history
build(node): add missing packages in the NodeJS stage
  • Loading branch information
kikkomep authored Jun 30, 2023
2 parents 0129ba3 + ddb75a3 commit cd2029b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/lifemonitor.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ COPY --chown=lm:lm cli /lm/cli
FROM node:14.16.0-alpine3.12 as node


RUN mkdir -p /static && apk add --no-cache bash
RUN mkdir -p /static && apk add --no-cache bash python3 make g++ \
&& addgroup -S lm && adduser -S lm -G lm \
&& chown -R lm:lm /static
WORKDIR /static/src
COPY lifemonitor/static/src/package.json package.json
RUN npm install
Expand Down

0 comments on commit cd2029b

Please sign in to comment.