mirror of
https://github.com/falk-werner/webfuse-provider
synced 2026-03-02 04:09:18 +00:00
Merge commit 'b19a54d2f9d8a3e83366c638aace4cf3b5daa96e' as 'build/dobuild'
This commit is contained in:
24
build/dobuild/tests/runners/dind.dockerfile
Normal file
24
build/dobuild/tests/runners/dind.dockerfile
Normal file
@@ -0,0 +1,24 @@
|
||||
#
|
||||
# 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
|
||||
|
||||
Reference in New Issue
Block a user