summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorkennycallado <kennycallado@gmail.com>2023-09-12 19:33:55 +0200
committerGitHub <noreply@github.com>2023-09-12 13:33:55 -0400
commitc2cc103a3df3c121cc5319990b184bf2916e1a14 (patch)
treed9e5bf910bc7c4e14e0ec344cdd7b10d22f964ae /Dockerfile
parentbb1ca6d78227280a9d056575642962f98e131c72 (diff)
Script to install from the terminal (#427)
* update: move nix and docker to utils * feat: script to install from the terminal * doc: add some instructions to install from the terminal * strip the binary on release * udpate: - avoiding deprecated set-output - adds checksum files on release - remove strip step * update dockerignore * fix if checksum file exists --------- Co-authored-by: kennycallado <kennycallado@hotmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile15
1 files changed, 0 insertions, 15 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index c5251be..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM rust:latest AS builder
-
-COPY . /usr/src/joshuto
-
-WORKDIR /usr/src/joshuto
-
-RUN rustup target add x86_64-unknown-linux-musl \
- && cargo build --target x86_64-unknown-linux-musl --release
-
-FROM busybox:latest
-
-COPY --from=builder /usr/src/joshuto/target/x86_64-unknown-linux-musl/release/joshuto /bin/joshuto
-
-WORKDIR /root
-