From b2b96c57c23991e89c5bf15cf31d600b635de7bd Mon Sep 17 00:00:00 2001 From: Benjamin Wingfield <bwingfield@ebi.ac.uk> Date: Tue, 27 Jun 2023 10:59:18 +0100 Subject: [PATCH] Delete dockerfile Containers don't make sense for deployment to Puhti --- Dockerfile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 2406d04..0000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM --platform=linux/amd64 rust:buster AS build - -WORKDIR /opt/build - -COPY . ./ - -RUN cargo build --target x86_64-unknown-linux-gnu - -FROM --platform=linux/amd64 debian:buster-slim - -RUN apt-get update && apt-get install -y ca-certificates - -COPY --from=build /opt/build/target/x86_64-unknown-linux-gnu/debug/hattivatti /opt/ - -CMD ["/opt/hattivatti"] \ No newline at end of file -- GitLab