From 0c9f60ccd94cb74ac746badcc1c50dccd5a4e861 Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Sat, 22 Jan 2022 18:56:11 -0500 Subject: [PATCH] fix(bot): upgrade node verison to 16 --- hack/dockerfiles/bot.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/dockerfiles/bot.Dockerfile b/hack/dockerfiles/bot.Dockerfile index a735a08..ebee420 100644 --- a/hack/dockerfiles/bot.Dockerfile +++ b/hack/dockerfiles/bot.Dockerfile @@ -1,4 +1,4 @@ -FROM node:14 AS builder +FROM node:16 AS builder # Create the user and group files that will be used in the running container to # run the process as an unprivileged user. @@ -15,7 +15,7 @@ COPY ./package.json ./yarn.lock /src/ COPY ./packages/bot/package.json /src/packages/bot/ RUN yarn workspace @roleypoly/bot install --focus -FROM node:14-slim AS final +FROM node:16-slim AS final WORKDIR /src COPY --from=builder /user/group /user/passwd /etc/