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
| MjkyMzMz | |
| MTkyMzMz | |
| MDkyMzMz | |
| NzkyMzMz | |
| NjkyMzMz | |
| NTkyMzMz | |
| NDkyMzMz | |
| OzkyMzMz | |
| OjkyMzMz | |
| MjM5MjMzMw== |
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
| # 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 && \ |
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 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 |
OlderNewer