Skip to content

Commit

Permalink
fix: Bump node in ts-proto.Dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenh committed May 28, 2022
1 parent 70b60d0 commit 42f3cea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ts-proto.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12-alpine as build
FROM node:17-alpine as build

COPY . .

Expand All @@ -13,12 +13,12 @@ RUN yarn cache clean
# install production dependencies only
RUN yarn install --production

FROM node:12-alpine
FROM node:17-alpine

WORKDIR /ts-proto

COPY --from=build build build
COPY --from=build node_modules node_modules
COPY protoc-gen-ts_proto .

ENTRYPOINT ["./protoc-gen-ts_proto"]
ENTRYPOINT ["./protoc-gen-ts_proto"]

0 comments on commit 42f3cea

Please sign in to comment.