From 1993d985d037a24f31c85026d8add2a8d23b4d9a Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 23 Oct 2019 16:30:19 +0900 Subject: [PATCH] Update gitea build to golang 1.13 on buster-slim buster is the new debian release, use it. And use the slim image, rather than the full, because we can. Upstream is now building with 1.13 - follow suit. Update the FROM lines to use explicit paths to images. Change-Id: I42f7cea1365b8bb0af56861f38107cbdffd130b0 --- docker/gitea/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/gitea/Dockerfile b/docker/gitea/Dockerfile index e47072c7b0..e03ad11849 100644 --- a/docker/gitea/Dockerfile +++ b/docker/gitea/Dockerfile @@ -22,7 +22,7 @@ ################################### #Build stage -FROM golang:1.11-stretch AS build-env +FROM docker.io/library/golang:1.13-buster AS build-env LABEL maintainer="infra-root@openstack.org" @@ -44,7 +44,7 @@ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ ################################### # Basic system setup common to all containers in our pod -FROM debian:testing as base +FROM docker.io/library/debian:buster-slim as base RUN apt-get update && apt-get -y install \ bash \