Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

[Snyk] Security upgrade golang from 1.10 to 1.15.14 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contrib/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
#

# Install proto3
FROM golang:1.10 AS proto3
FROM golang:1.15.14 AS proto3
RUN apt-get update && apt-get install -y autoconf automake g++ libtool unzip
COPY script/setup/install-protobuf install-protobuf
RUN ./install-protobuf

# Install runc
FROM golang:1.10 AS runc
FROM golang:1.15.14 AS runc
RUN apt-get update && apt-get install -y curl libseccomp-dev
COPY vendor.conf /go/src/github.com/containerd/containerd/vendor.conf
COPY script/setup/install-runc install-runc
RUN ./install-runc

FROM golang:1.10
FROM golang:1.15.14
RUN apt-get update && apt-get install -y btrfs-tools gcc git libseccomp-dev make xfsprogs

COPY --from=proto3 /usr/local/bin/protoc /usr/local/bin/protoc
Expand Down