File tree 6 files changed +9
-6
lines changed 6 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ dist: xenial
2
2
language : go
3
3
4
4
go :
5
+ - 1.13.x
5
6
- 1.12.x
6
7
- 1.11.x
7
8
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ require (
18
18
github.com/docker/go-events v0.0.0-20170721190031-9461782956ad // indirect
19
19
github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82 // indirect
20
20
github.com/docker/go-units v0.3.3
21
- github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20191030150325-dbf9a1e05f090
21
+ github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20191029213755-dbf9a1e05f09
22
22
github.com/go-ole/go-ole v1.2.4 // indirect
23
23
github.com/godbus/dbus v0.0.0-20181025153459-66d97aec3384 // indirect
24
24
github.com/gofrs/uuid v3.2.0+incompatible
@@ -53,3 +53,5 @@ require (
53
53
54
54
// Workaround for github.com/containerd/containerd issue #3031
55
55
replace github.com/docker/distribution v2.7.1+incompatible => github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible
56
+
57
+ go 1.11
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82 h1:X0fj836zx99zF
59
59
github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82 /go.mod h1:/u0gXw0Gay3ceNrsHubL3BtdOL2fHf93USgMTe0W5dI =
60
60
github.com/docker/go-units v0.3.3 h1:Xk8S3Xj5sLGlG5g67hJmYMmUgXv5N4PhkjJHHqrwnTk =
61
61
github.com/docker/go-units v0.3.3 /go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk =
62
- github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20191030150325-dbf9a1e05f090 h1:xxS6hBxzXh/EEahnfwXBLxIIDtDAfLJrA5OmsQQ/lNI =
63
- github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20191030150325-dbf9a1e05f090 /go.mod h1:tVXziw7GjioCKVjI5/agymYxUaqJM6q7cp9e6kwjo8Q =
62
+ github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20191029213755-dbf9a1e05f09 h1:JDfRpK+V2J1Es+Xm6aMJjCqvA4xv1kuWnJfeSopyDwo =
63
+ github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20191029213755-dbf9a1e05f09 /go.mod h1:tVXziw7GjioCKVjI5/agymYxUaqJM6q7cp9e6kwjo8Q =
64
64
github.com/globalsign/mgo v0.0.0-20180905125535-1ca0a4f7cbcb h1:D4uzjWwKYQ5XnAvUbuvHW93esHg7F8N/OYeBBcJoTr0 =
65
65
github.com/globalsign/mgo v0.0.0-20180905125535-1ca0a4f7cbcb /go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q =
66
66
github.com/go-ole/go-ole v1.2.4 h1:nNBDSCOigTSiarFpYE9J/KtEA1IOW4CNeqT9TQDqCxI =
Original file line number Diff line number Diff line change 17
17
# COMMON IMAGES
18
18
#
19
19
# ########################################
20
- FROM golang:1.12 -stretch as base
20
+ FROM golang:1.13 -stretch as base
21
21
# Set up a non-root user for running builds and some tests in later stages
22
22
# Buildkit caches don't support anything like a "--chown" flag yet, so we need to ensure builder will have access to them
23
23
RUN useradd --create-home --uid 1001 builder \
Original file line number Diff line number Diff line change 11
11
# express or implied. See the License for the specific language governing
12
12
# permissions and limitations under the License.
13
13
14
- FROM golang:1.12 -stretch
14
+ FROM golang:1.13 -stretch
15
15
16
16
RUN apt-get update && apt-get install --yes --no-install-recommends \
17
17
libprotobuf-dev \
Original file line number Diff line number Diff line change 11
11
# express or implied. See the License for the specific language governing
12
12
# permissions and limitations under the License.
13
13
14
- FROM golang:1.12 -stretch
14
+ FROM golang:1.13 -stretch
15
15
16
16
RUN apt-get update && \
17
17
DEBIAN_FRONTEND=noninteractive apt-get -y install libseccomp-dev pkg-config
You can’t perform that action at this time.
0 commit comments