mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-02 23:12:51 +02:00
18 lines
384 B
Text
18 lines
384 B
Text
# Copyright The OpenTelemetry Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG BASE_IMAGE=alpine:latest
|
|
ARG CORES=${nproc}
|
|
|
|
FROM ${BASE_IMAGE} as final
|
|
|
|
RUN apk update
|
|
|
|
RUN apk add --update alpine-sdk \
|
|
&& apk add cmake openssl openssl-dev g++ \
|
|
curl-dev git autoconf libtool linux-headers \
|
|
libevent-dev openssl-dev
|
|
|
|
RUN mkdir -p /opt/third_party/install
|
|
|
|
WORKDIR /opt
|