1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 13:20:46 +00:00
falk-werner_webfuse-provider/tests/runners/dind.dockerfile
nosamad b19a54d2f9 Squashed 'build/dobuild/' content from commit b017db7
git-subtree-dir: build/dobuild
git-subtree-split: b017db7c22e7c0ca6cee3f0f5ac1dd50f3b68eb9
2020-05-25 23:24:23 +02:00

25 lines
656 B
Docker

#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file is part of dobuild.
# Copyright (c) 2019 Contributors as noted in the AUTHORS file.
#
# SPDX-License-Identifier: MPL-2.0
ARG REGISTRY_PREFIX=''
ARG DOCKER_VERSION=18.09.6
FROM ${REGISTRY_PREFIX}docker:${DOCKER_VERSION}-dind
ARG CAPATH="./ca-certificates"
COPY $CAPATH /usr/local/share/ca-certificates
RUN set -x \
&& { update-ca-certificates || true; } \
&& apk add --no-cache \
ca-certificates \
&& update-ca-certificates