1
0
Fork 0
mirror of synced 2024-11-19 07:15:36 -05:00

Update golang Docker tag to v1.20.5

This commit is contained in:
Renovate Bot 2024-09-02 01:29:39 +00:00
parent 0c881c81e7
commit 9222176fc5

View file

@ -2,7 +2,7 @@ FROM node:16-alpine3.15 AS frontend-builder
COPY frontend/ /app
RUN apk add --update python3 make g++ && cd /app && npm install && npm run build
FROM golang:1.17.3-buster AS backend-builder
FROM golang:1.20.5-buster@sha256:eb3f9ac805435c1b2c965d63ce460988e1000058e1f67881324746362baf9572 AS backend-builder
RUN go install github.com/gobuffalo/packr/v2/packr2@latest
COPY --from=frontend-builder /app/static /app/frontend/static
COPY . /app