Update Dockerfile
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
This commit is contained in:
parent
135c0cb26f
commit
624d363080
1 changed files with 4 additions and 0 deletions
|
@ -14,6 +14,10 @@ RUN find packages \! -name "package.json" -mindepth 2 -maxdepth 2 -exec rm -rf {
|
|||
# Stage 2 - Install dependencies and build packages
|
||||
FROM node:18-bookworm-slim AS build
|
||||
|
||||
# Required for macOS
|
||||
RUN apt update -y
|
||||
RUN apt install -y python3 make gcc build-essential
|
||||
|
||||
USER node
|
||||
WORKDIR /app
|
||||
|
||||
|
|
Loading…
Reference in a new issue