Skip to content

Commit

Permalink
chore(deps): update frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 6, 2023
1 parent 46711eb commit 4bc0d18
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 230 deletions.
6 changes: 3 additions & 3 deletions src/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
# SPDX-License-Identifier: Apache-2.0


FROM node:18-alpine AS deps
FROM node:21-alpine AS deps
RUN apk add --no-cache libc6-compat

WORKDIR /app

COPY ./src/frontend/package*.json ./
RUN npm ci

FROM node:18-alpine AS builder
FROM node:21-alpine AS builder
RUN apk add --no-cache libc6-compat protobuf-dev protoc
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
Expand All @@ -20,7 +20,7 @@ COPY ./src/frontend .
RUN npm run grpc:generate
RUN npm run build

FROM node:18-alpine AS runner
FROM node:21-alpine AS runner
WORKDIR /app
RUN apk add --no-cache protobuf-dev protoc

Expand Down
Loading

0 comments on commit 4bc0d18

Please sign in to comment.