Update Dockerfile

This commit is contained in:
John Dorman 2023-03-23 03:46:39 -07:00 committed by GitHub
parent 9918f7c03a
commit 1801eee6b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,11 @@
#RUN zip -r /tmp/release/podman-install.zip *
FROM arm64v8/rust as rust
RUN mkdir -p /tmp/work
WORKDIR /tmp/work
RUN git clone https://github.com/containers/netavark/
WORKDIR /tmp/work/netavark
RUN make
RUN rustup target add aarch64-unknown-linux-gnu && make
FROM golang:1.18.3-stretch