Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit f4da636

Browse files
committed
fix: use node LTS version in Dockerfile
1 parent 080293a commit f4da636

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN poetry config virtualenvs.create false && \
2222
COPY . /app
2323

2424
# Build the webapp
25-
FROM node:23.3-slim AS webbuilder
25+
FROM node:22-slim AS webbuilder
2626

2727
# Install curl for downloading the webapp from GH and unzip to extract it
2828
RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -45,7 +45,7 @@ RUN echo "Latest FE commit: $LATEST_COMMIT_SHA"
4545
RUN --mount=type=secret,id=gh_token \
4646
LATEST_COMMIT_SHA=${LATEST_COMMIT_SHA} \
4747
curl -L -o main.zip "https://api.github.com/repos/stacklok/codegate-ui/zipball/main" \
48-
-H "Authorization: Bearer $(cat /run/secrets/gh_token)"
48+
-H "Authorization: Bearer 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"
4949

5050
# Extract the downloaded zip file
5151
RUN unzip main.zip

0 commit comments

Comments
 (0)