Update Dockerfile
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run

This commit is contained in:
richardrobertreitz 2025-02-18 11:30:42 +00:00
parent 135c0cb26f
commit 624d363080

View file

@ -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