From 42f3ceac5323056b1b845b51919ecddaa32bf258 Mon Sep 17 00:00:00 2001 From: Stephen Haberman Date: Sat, 28 May 2022 13:27:09 -0500 Subject: [PATCH] fix: Bump node in ts-proto.Dockerfile. --- ts-proto.Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ts-proto.Dockerfile b/ts-proto.Dockerfile index 42bc6bfa1..b67d94814 100644 --- a/ts-proto.Dockerfile +++ b/ts-proto.Dockerfile @@ -1,4 +1,4 @@ -FROM node:12-alpine as build +FROM node:17-alpine as build COPY . . @@ -13,7 +13,7 @@ RUN yarn cache clean # install production dependencies only RUN yarn install --production -FROM node:12-alpine +FROM node:17-alpine WORKDIR /ts-proto @@ -21,4 +21,4 @@ COPY --from=build build build COPY --from=build node_modules node_modules COPY protoc-gen-ts_proto . -ENTRYPOINT ["./protoc-gen-ts_proto"] \ No newline at end of file +ENTRYPOINT ["./protoc-gen-ts_proto"]