Skip to content

Commit

Permalink
Merge pull request #477 from bento-platform/chore/update
Browse files Browse the repository at this point in the history
chore: update base img, deps; bump ver to 7.0.0
  • Loading branch information
davidlougheed authored Jan 8, 2025
2 parents 035e6bb + 8117a55 commit 5badae5
Show file tree
Hide file tree
Showing 4 changed files with 1,645 additions and 1,470 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ RUN npm run build
FROM nginx:1.26

# Install node so that we can run the create_config_prod.js & create_service_info.js scripts
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
apt-get update -y && \
apt-get install -y ca-certificates curl gnupg && \
mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | \
gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | \
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" | \
tee /etc/apt/sources.list.d/nodesource.list && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY package-lock.json .

RUN npm ci

FROM ghcr.io/bento-platform/bento_base_image:node-debian-2024.11.01
FROM ghcr.io/bento-platform/bento_base_image:node-debian-2025.01.01

LABEL org.opencontainers.image.description="Local development image for Bento Web."

Expand Down
Loading

0 comments on commit 5badae5

Please sign in to comment.