Update Dockerfile

Update
- alpine 3.13 -> 3.14
- golang 1.16 -> 1.17
This commit is contained in:
kleener 2021-11-24 13:00:14 +01:00 committed by GitHub
parent 16718a9d89
commit 9e52f68ca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
FROM golang:1.16 AS builder
FROM golang:1.17 AS builder
WORKDIR /workdir
COPY . .
RUN make build
FROM alpine:3.13
FROM alpine:3.14
ENV CONFIG=/config/server.conf
RUN adduser -D spreedbackend && \