Skip to content

Commit

Permalink
update to node23 and use new pnpm deploy settings
Browse files Browse the repository at this point in the history
  • Loading branch information
gsterjov committed Feb 11, 2025
1 parent cdf10fc commit 79f7435
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
inject-workspace-packages=true
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as builder
FROM node:23-alpine as builder
LABEL org.opencontainers.image.source="https://github.com/ARGA-Genomes/arga-frontend"
LABEL org.opencontainers.image.description="A container image running the frontend server"
LABEL org.opencontainers.image.licenses="AGPL-3.0"
Expand All @@ -8,7 +8,7 @@ COPY . .
RUN npm install -g pnpm && pnpm install && pnpm build && pnpm --filter arga-frontend --prod deploy pruned


FROM node:18-alpine
FROM node:23-alpine
WORKDIR /usr/src/arga-frontend

EXPOSE 3000
Expand Down
4 changes: 2 additions & 2 deletions Containerfile-staging
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as builder
FROM node:23-alpine as builder
LABEL org.opencontainers.image.source="https://github.com/ARGA-Genomes/arga-frontend"
LABEL org.opencontainers.image.description="A container image running the frontend server"
LABEL org.opencontainers.image.licenses="AGPL-3.0"
Expand All @@ -8,7 +8,7 @@ COPY . .
RUN npm install -g pnpm && pnpm install && pnpm build:staging && pnpm --filter arga-frontend --staging deploy pruned


FROM node:18-alpine
FROM node:23-alpine
WORKDIR /usr/src/arga-frontend

EXPOSE 3000
Expand Down

0 comments on commit 79f7435

Please sign in to comment.