Updating node image and go image in Dockerfile (#1504)

- Updating node image to 17
- Updating go image to 1.17

Signed-off-by: Lenin Alevski <alevsk.8772@gmail.com>
This commit is contained in:
Lenin Alevski
2022-02-02 13:44:43 -06:00
committed by GitHub
parent c52ba1f859
commit 5a0ec11199
4 changed files with 510 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
FROM node:14 as uilayer
FROM node:17 as uilayer
WORKDIR /app
@@ -12,7 +12,7 @@ RUN make build-static
USER node
FROM golang:1.16 as golayer
FROM golang:1.17 as golayer
RUN apt-get update -y && apt-get install -y ca-certificates

View File

@@ -1,4 +1,4 @@
FROM node:14 as uilayer
FROM node:17 as uilayer
WORKDIR /app

2
go.mod
View File

@@ -146,7 +146,7 @@ require (
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb // indirect
google.golang.org/grpc v1.43.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect

507
go.sum

File diff suppressed because it is too large Load Diff