Skip to content

Instantly share code, notes, and snippets.

View luginbash's full-sized avatar

Luginbash luginbash

View GitHub Profile
@luginbash
luginbash / k3os-config.yaml
Created December 4, 2020 05:28
Cloud Config for K3OS
ssh_authorized_keys:
- github:luginbash
k3os:
data_sources:
- openstack
sysctl:
dns_nameservers:
- 8.8.8.8
- 1.1.1.1
@luginbash
luginbash / Dockerfile
Created September 12, 2021 05:10
telegram-bot-api
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