Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ General:
- Performance improvements for internal metadata access using in-memory metadata store
- Fix building failure on Node 22 platform.
- Fix * IfMatch for non-existent resource not throwing 412 Precondition Failed
- Update node version to address critical CVEs

## 2025.07 Version 3.35.0

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Builder
#
FROM node:22-alpine3.21 as builder
FROM node:22-alpine3.23 as builder

WORKDIR /opt/azurite

Expand All @@ -18,7 +18,7 @@ RUN npm run build && \

# Production image
#
FROM node:22-alpine3.21
FROM node:22-alpine3.23

ENV NODE_ENV=production

Expand Down
Loading