Update docker container Node.JS version to v20 (#78)

This commit is contained in:
Brendan Kellam 2024-11-18 11:48:20 -08:00 committed by GitHub
parent e5b83b68b2
commit 0f8f64c56f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Bumped NodeJS version to v20. ([#78](https://github.com/sourcebot-dev/sourcebot/pull/78))
## [2.4.2] - 2024-11-14
### Added

View file

@ -1,4 +1,4 @@
FROM node:18-alpine3.19 AS node-alpine
FROM node:20-alpine3.19 AS node-alpine
FROM golang:1.22.2-alpine3.19 AS go-alpine
# ------ Build Zoekt ------