This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh_authorized_keys: | |
- github:luginbash | |
k3os: | |
data_sources: | |
- openstack | |
sysctl: | |
dns_nameservers: | |
- 8.8.8.8 | |
- 1.1.1.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:latest | |
WORKDIR /build | |
COPY . /build | |
RUN apk add --no-cache --virtual .build-deps \ | |
alpine-sdk cmake gperf openssl-dev zlib-dev linux-headers \ | |
&& mkdir build && cd build \ | |
&& cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/local .. \ | |
&& cmake --build . --target install |
OlderNewer