Compare commits

..

No commits in common. '60251c68781103b030288a61e93b4f82df069699' and 'a2155e0af662425471989d0e8d475d6358aa27a7' have entirely different histories.

@ -1 +0,0 @@
/target/

@ -2,7 +2,7 @@
name = "monolith"
version = "2.8.1"
authors = [
"Sunshine <snshn@tutanota.com>",
"Sunshine <sunshine@uberspace.net>",
"Mahdi Robatipoor <mahdi.robatipoor@gmail.com>",
"Emmanuel Delaborde <th3rac25@gmail.com>",
"Emi Simpson <emi@alchemi.dev>",

@ -1,4 +1,4 @@
FROM clux/muslrust:stable as builder
FROM ekidd/rust-musl-builder as builder
RUN curl -L -o monolith.tar.gz $(curl -s https://api.github.com/repos/y2z/monolith/releases/latest \
| grep "tarball_url.*\"," \
@ -17,6 +17,6 @@ RUN apk update && \
apk add --no-cache openssl && \
rm -rf "/var/cache/apk/*"
COPY --from=builder /root/.cargo/bin/monolith /usr/bin/monolith
COPY --from=builder /home/rust/.cargo/bin/monolith /usr/bin/monolith
WORKDIR /tmp
ENTRYPOINT ["/usr/bin/monolith"]

@ -42,12 +42,6 @@ brew install monolith
choco install monolith
```
#### Via [Scoop](https://scoop.sh/#/apps?q=monolith) (Windows)
```console
scoop install main/monolith
```
#### Via [MacPorts](https://ports.macports.org/port/monolith/summary) (macOS)
```console
@ -101,31 +95,13 @@ make install clean
#### Using [containers](https://www.docker.com/)
```console
docker build -t y2z/monolith .
docker build -t Y2Z/monolith .
sudo install -b dist/run-in-container.sh /usr/local/bin/monolith
```
#### From [source](https://github.com/Y2Z/monolith)
Dependencies: `libssl` `cargo`
<details>
<summary>Install cargo (GNU/Linux)</summary>
Check if cargo is installed
```console
cargo -v
```
If cargo is not already installed, install and add it to your existing ```$PATH``` (paraphrasing the [official installation instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html)):
```console
curl https://sh.rustup.rs -sSf | sh
. "$HOME/.cargo/env"
```
Proceed with installing from source:
</details>
Dependency: `libssl`
```console
git clone https://github.com/Y2Z/monolith.git

@ -7,4 +7,4 @@ if which podman 2>&1 > /dev/null; then
DOCKER=podman
fi
$DOCKER run --rm y2z/$PROG_NAME "$@"
$DOCKER run --rm Y2Z/$PROG_NAME "$@"

Loading…
Cancel
Save