Skip to content

Commit 33ccd9b

Browse files
committed
Dockerfile: update from jessie to stretch
jessie is old (even by Debian standards) and doesn't even build anymore without changes, as the apt-get contents have moved to an archive URL. Debian stable is stretch these days, so upgrade to that. (Debian buster is almost the next stable, but not quite yet) Change-Id: I633edc56d92cea37c7ed01f6e85b4bea4ff3b412 Reviewed-on: https://go-review.googlesource.com/c/playground/+/176277 Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent b884d85 commit 33ccd9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2017 The Go Authors. All rights reserved.
22
# Use of this source code is governed by a BSD-style
33
# license that can be found in the LICENSE file.
4-
FROM debian:jessie as builder
4+
FROM debian:stretch as builder
55
LABEL maintainer "[email protected]"
66

77
ENV GOPATH /go
@@ -215,7 +215,7 @@ RUN go install cloud.google.com/go/compute/metadata \
215215
COPY . /go/src/playground/
216216
RUN go install playground
217217

218-
FROM debian:jessie
218+
FROM debian:stretch
219219

220220
RUN apt-get update && apt-get install -y git ca-certificates --no-install-recommends
221221

0 commit comments

Comments
 (0)