Skip to content

Commit

Permalink
Lodestar source build with 22-slim
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Oct 5, 2024
1 parent 4f6d1f2 commit cbfecdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lodestar/Dockerfile.source
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.4-slim AS builder
FROM node:22-slim AS builder

# Here only to avoid build-time errors
ARG DOCKER_TAG
Expand All @@ -16,7 +16,7 @@ RUN bash -c "cd .. && rm -rf app && git clone ${SRC_REPO} app && cd app && git c
&& if [[ ${BUILD_TARGET} =~ pr-.+ ]]; then git fetch origin pull/$(echo ${BUILD_TARGET} | cut -d '-' -f 2)/head:ls-pr; git checkout ls-pr; else git checkout ${BUILD_TARGET}; fi \
&& yarn install --non-interactive --frozen-lockfile && yarn build"

FROM node:22.4-slim
FROM node:22-slim

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata bash gosu git wget \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit cbfecdb

Please sign in to comment.