Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐋 fix(Dockerfile): add additional deps., handle permissions, --no-audit flag on install #2157

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
# Base node image
FROM node:18-alpine AS node

COPY . /app
RUN mkdir -p /app && chown node:node /app
WORKDIR /app

USER node

COPY --chown=node:node . .

# Allow mounting of these files, which have no default
# values.
RUN touch .env
RUN npm config set fetch-retry-maxtimeout 300000
RUN apk add g++ make py3-pip
RUN npm install -g node-gyp


RUN apk --no-cache add curl && \
npm install
npm install --no-audit

# React client build
ENV NODE_OPTIONS="--max-old-space-size=2048"
Expand Down