Skip to content

Instantly share code, notes, and snippets.

@larsw
larsw / scores.txt
Created November 25, 2021 19:10
scores
MjkyMzMz
MTkyMzMz
MDkyMzMz
NzkyMzMz
NjkyMzMz
NTkyMzMz
NDkyMzMz
OzkyMzMz
OjkyMzMz
MjM5MjMzMw==
@larsw
larsw / Dockerfile
Created September 19, 2023 11:58
bun:alpine Dockerfile
# based on https://github.com/oven-sh/bun/issues/5545
FROM alpine
RUN apk --no-cache add ca-certificates wget && \
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.28-r0/glibc-2.28-r0.apk && \
wget https://github.com/oven-sh/bun/releases/download/bun-v1.0.2/bun-linux-x64.zip && \
apk add --no-cache --force-overwrite glibc-2.28-r0.apk && \
apk del wget && \
@larsw
larsw / Dockerfile
Created September 28, 2025 19:19
gleam-node
FROM erlang:alpine
# Install Gleam
RUN apk add --no-cache bash git curl build-base \
&& curl -L https://github.com/gleam-lang/gleam/releases/download/v1.12.0/gleam-v1.12.0-x86_64-unknown-linux-musl.tar.gz \
| tar -xz -C /usr/local/bin \
&& chmod +x /usr/local/bin/gleam
RUN wget -qO /usr/local/bin/rebar3 https://s3.amazonaws.com/rebar3/rebar3 \
&& chmod +x /usr/local/bin/rebar3