Revert "Remove yarn"

This reverts commit 602c1ed9a6.
This commit is contained in:
Lance Pioch
2024-05-11 00:55:35 -04:00
parent b18ebeefdc
commit b32f8966e1
6 changed files with 9671 additions and 8 deletions

View File

@@ -5,8 +5,8 @@
FROM --platform=$TARGETOS/$TARGETARCH node:20-alpine
WORKDIR /app
COPY . ./
RUN npm install --frozen-lockfile \
&& npm run build:production
RUN yarn install --frozen-lockfile \
&& yarn run build:production
# Stage 1:
# Build the actual container with all of the needed PHP dependencies that will run the application.