From 1f7715c2b9d6842e877720cf9429e0254a14f7a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Such=C3=A1nek?= Date: Wed, 26 Jun 2024 16:53:21 +0200 Subject: [PATCH] Remove the non-functional Alpine config --- Dockerfile-alpine | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Dockerfile-alpine diff --git a/Dockerfile-alpine b/Dockerfile-alpine deleted file mode 100644 index e5cea22..0000000 --- a/Dockerfile-alpine +++ /dev/null @@ -1,19 +0,0 @@ -# See https://hub.docker.com/_/rust/ - -FROM rust:alpine as builder -WORKDIR /usr/src/acorns -COPY . . -RUN apk update -RUN apk add musl-dev -RUN apk add openssl-dev -RUN CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse cargo install --path . - -FROM alpine:latest -RUN apk update -RUN apk add openssl-dev -COPY --from=builder /usr/local/cargo/bin/acorns /usr/local/bin/acorns -# When running this container interactively, use `-v .:/mnt/acorns:Z` -# to mount the current directory in the host to the container working dir. -VOLUME ["/mnt/acorns"] -WORKDIR "/mnt/acorns" -CMD ["acorns"]