浏览代码

docker: bump Alpine to 3.14

Nicola Murino 4 年之前
父节点
当前提交
3ac832c8dd
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Dockerfile.alpine

+ 2 - 2
Dockerfile.alpine

@@ -1,4 +1,4 @@
-FROM golang:1.16-alpine3.13 AS builder
+FROM golang:1.16-alpine3.14 AS builder
 
 ENV GOFLAGS="-mod=readonly"
 
@@ -26,7 +26,7 @@ RUN set -xe && \
     go build $(if [ -n "${FEATURES}" ]; then echo "-tags ${FEATURES}"; fi) -trimpath -ldflags "-s -w -X github.com/drakkan/sftpgo/v2/version.commit=${COMMIT_SHA} -X github.com/drakkan/sftpgo/v2/version.date=`date -u +%FT%TZ`" -v -o sftpgo
 
 
-FROM alpine:3.13
+FROM alpine:3.14
 
 # Set to "true" to install the optional git and rsync dependencies
 ARG INSTALL_OPTIONAL_PACKAGES=false