Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump node from 20.8.1-bullseye-slim to 21.2.0-bullseye-slim #218

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.8.1-bullseye-slim as base-with-encryption
FROM node:21.2.0-bullseye-slim as base-with-encryption

WORKDIR /cryptd

Expand All @@ -10,7 +10,7 @@ RUN apt-get update && \

########################################################################################################################

FROM node:20.8.1-bullseye-slim as build
FROM node:21.2.0-bullseye-slim as build

ARG COMMIT_SHA=<not-specified>
ENV NODE_ENV=production
Expand All @@ -30,7 +30,7 @@ RUN echo "crud-service: $COMMIT_SHA" >> ./commit.sha

# create a CRUD Service image that does not support automatic CSFLE
# and therefore it can be employed by everybody in any MongoDB product
FROM node:20.8.1-bullseye-slim as crud-service-no-encryption
FROM node:21.2.0-bullseye-slim as crud-service-no-encryption

# note: zlib can be removed once node image version is updated
RUN apt-get update \
Expand Down
Loading