fix(Docker): Fix ARM64 Docker builds by adding node-gyp dependencies (#3595) (#3596)

This commit is contained in:
Patrick D. Lloyd 2023-08-14 07:46:41 -07:00 committed by GitHub
parent 88ef7b733f
commit 41dc424d4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,7 @@ COPY platform /usr/src/app/platform
# Copy Files # Copy Files
FROM node:16.15.0-slim as builder FROM node:16.15.0-slim as builder
RUN apt-get update && apt-get install -y build-essential python3
RUN mkdir /usr/src/app RUN mkdir /usr/src/app
WORKDIR /usr/src/app WORKDIR /usr/src/app