Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Nov 26, 2024
1 parent b487b3e commit 18fd481
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY source /packages/umbreld/source
# ui build stage
#########################################################################

FROM --platform=$BUILDPLATFORM node:18.19.1-buster-slim AS ui-build
FROM --platform=$BUILDPLATFORM node:18 AS ui-build

# Install pnpm
RUN npm install -g pnpm@8
Expand All @@ -32,7 +32,7 @@ RUN pnpm run build
# backend build stage
#########################################################################

FROM node:18.19.1-buster-slim AS be-build
FROM node:18 AS be-build

COPY --from=base packages/umbreld /tmp/umbreld
COPY --from=ui-build /app/dist /tmp/umbreld/ui
Expand Down

0 comments on commit 18fd481

Please sign in to comment.