Skip to content

Commit

Permalink
chore: fix versions in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Leksat committed Oct 2, 2024
1 parent 39c5c5b commit 48a3b9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .lagoon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,21 @@ ENV WEBROOT=web
# PREVIEW IMAGE
# ====================================================================================================

FROM uselagoon/node-18:23.12.0 as preview
FROM uselagoon/node-18 as preview

RUN npm install -g pnpm@8.6.0
RUN npm install -g pnpm@8.15.9
COPY --from=builder /tmp/.deploy/preview /app
CMD pnpm start

# ====================================================================================================
# PUBLISHER IMAGE
# ====================================================================================================

FROM uselagoon/node-18:23.12.0 as publisher
FROM uselagoon/node-18 as publisher

RUN apk add --no-cache sqlite curl github-cli

RUN npm install -g pnpm@8.6.0
RUN npm install -g pnpm@8.15.9

COPY --from=builder /tmp/.deploy/publisher /app

Expand Down

0 comments on commit 48a3b9b

Please sign in to comment.