update base images
parent
1a3aac4da3
commit
9f856abb8f
|
@ -1,2 +1,2 @@
|
|||
FROM golang:1.8
|
||||
FROM golang:1.18
|
||||
ADD auto-pause-hook /auto-pause-hook
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
FROM ubuntu:18.04
|
||||
FROM ubuntu:20.04
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y apt dpkg apt-utils ca-certificates software-properties-common \
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
|
||||
# multi-stage docker build so we can build auto-pause for arm64
|
||||
FROM golang:1.17 as auto-pause
|
||||
FROM golang:1.18 as auto-pause
|
||||
WORKDIR /src
|
||||
# auto-pause depends on core minikube code so we need to pass the whole source code as the context
|
||||
# copy in the minimal amount of source code possible
|
||||
|
@ -36,7 +36,7 @@ RUN if [ "$PREBUILT_AUTO_PAUSE" != "true" ]; then cd ./cmd/auto-pause/ && go bui
|
|||
|
||||
# start from ubuntu 20.04, this image is reasonably small as a starting point
|
||||
# for a kubernetes node image, it doesn't contain much we don't need
|
||||
FROM ubuntu:focal-20220316 as kicbase
|
||||
FROM ubuntu:focal-20220531 as kicbase
|
||||
|
||||
ARG BUILDKIT_VERSION="v0.10.3"
|
||||
ARG FUSE_OVERLAYFS_VERSION="v1.7.1"
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
# Includes tools used for kubernetes/minikube CI
|
||||
# NOTE: we attempt to avoid unnecessary tools and image layers while
|
||||
# supporting kubernetes builds, minikube installation, etc.
|
||||
FROM debian:buster
|
||||
FROM debian:bullseye
|
||||
|
||||
# arg that specifies the go version to install
|
||||
ARG GO_VERSION
|
||||
|
|
Loading…
Reference in New Issue