Skip to content
Snippets Groups Projects
Unverified Commit b2b96c57 authored by Benjamin Wingfield's avatar Benjamin Wingfield Committed by GitHub
Browse files

Delete dockerfile

Containers don't make sense for deployment to Puhti
parent ee71ca50
No related branches found
No related tags found
No related merge requests found
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
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment