Skip to content

Commit

Permalink
fix: Use Node 20 in GKE dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
nielm committed Mar 14, 2024
1 parent 2bb1d0e commit a481fb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Dockerfile-poller
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG NODE_VERSION=18
ARG NODE_VERSION=20
FROM node:${NODE_VERSION}-alpine AS build-env

WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile-scaler
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG NODE_VERSION=18
ARG NODE_VERSION=20
FROM node:${NODE_VERSION}-alpine AS build-env

WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile-unified
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG NODE_VERSION=18
ARG NODE_VERSION=20
FROM node:${NODE_VERSION}-alpine AS build-env

WORKDIR /usr/src/app
Expand Down

0 comments on commit a481fb6

Please sign in to comment.