mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-06 16:04:26 +01:00
While we introduced IMAGE_REGISTRY, we didn't actually update the corresponding Dockerfiles to utilize it. Let's add Fixes: #1622 Signed-off-by: Eric Ernst <eric.g.ernst@gmail.com>
13 lines
212 B
Docker
13 lines
212 B
Docker
#
|
|
# Copyright (c) 2018 HyperHQ Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REGISTRY=docker.io
|
|
FROM ${IMAGE_REGISTRY}/alpine:3.11.6
|
|
|
|
RUN apk update && apk add \
|
|
bash \
|
|
coreutils \
|
|
binutils
|