Skip to content

Commit

Permalink
feat: upgrade to node v20 in docker files
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumarrs committed Feb 8, 2024
1 parent 3ce926f commit 67c8bf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.4
FROM node:18.19.0-alpine3.18 AS base
FROM node:20.11.0-alpine3.19 AS base
ENV HUSKY 0

RUN apk update
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-ut-func
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV HUSKY 0
RUN apt-get update \
&& apt-get install -y curl make g++ \
&& apt-get install -y cpio \
&& curl -sL https://deb.nodesource.com/setup_18.x | bash \
&& curl -sL https://deb.nodesource.com/setup_20.x | bash \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /var/lib/apt/lists.d/* \
Expand Down

0 comments on commit 67c8bf9

Please sign in to comment.