this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

swap build.sh for Dockerfile build. add build command to README

nuv 777761fc a9f7b884

+24 -13
+17
Dockerfile
··· 1 + FROM ghcr.io/gleam-lang/gleam:v1.11.1-erlang-alpine AS build 2 + COPY . /app/ 3 + RUN cd /app && gleam build 4 + 5 + FROM oven/bun AS compile 6 + COPY --from=build /app/build/dev/javascript/ /build 7 + WORKDIR /app 8 + RUN bun build --compile --target=bun-linux-x64 /build/condition_overload/condition_overload.mjs --outfile /build/bin/linux-x64/condition_overload 9 + RUN bun build --compile --target=bun-linux-arm64 /build/condition_overload/condition_overload.mjs --outfile /build/bin/linux-arm64/condition_overload 10 + RUN bun build --compile --target=bun-windows-x64 /build/condition_overload/condition_overload.mjs --outfile /build/bin/windows-x64/condition_overload 11 + RUN bun build --compile --target=bun-darwin-x64 /build/condition_overload/condition_overload.mjs --outfile /build/bin/darwin-x64/condition_overload 12 + RUN bun build --compile --target=bun-darwin-arm64 /build/condition_overload/condition_overload.mjs --outfile /build/bin/darwin-arm64/condition_overload 13 + RUN bun build --compile --target=bun-x64-musl /build/condition_overload/condition_overload.mjs --outfile /build/bin/x64-musl/condition_overload 14 + RUN bun build --compile --target=bun-linux-arm64-musl /build/condition_overload/condition_overload.mjs --outfile /build/bin/linux-arm64-musl/condition_overload 15 + 16 + FROM scratch 17 + COPY --from=compile /build/bin/ /
+7 -4
README.md
··· 1 1 # condition_overload 2 2 3 - [![Package Version](https://img.shields.io/hexpm/v/condition_overload)](https://hex.pm/packages/condition_overload) 4 - [![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/condition_overload/) 3 + ## Development 5 4 5 + ```sh 6 + gleam run SEARCHTERM # Run the project 7 + ``` 6 8 7 - ## Development 9 + ## Build 8 10 9 11 ```sh 10 - gleam run SEARCHTERM # Run the project 12 + docker build --output ./build/bin/ . 11 13 ``` 14 +
-9
build.sh
··· 1 - #!/usr/bin/env bash 2 - 3 - rm ./build/bin -rf 4 - 5 - gleam build 6 - 7 - bun build --compile --target=bun-linux-x64 ./build/dev/javascript/condition_overload/gleam.main.mjs --outfile ./build/bin/condition_overload 8 - 9 - bun build --compile --target=bun-windows-x64 ./build/dev/javascript/condition_overload/gleam.main.mjs --outfile ./build/bin/condition_overload