add containerfile
This commit is contained in:
parent
aeb66e878c
commit
d7f056f77e
3 changed files with 26 additions and 2 deletions
22
Containerfile
Normal file
22
Containerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
FROM docker.io/rust:1-alpine3.19 AS builder
|
||||
|
||||
RUN apk --no-cache add musl-dev
|
||||
|
||||
ENV CARGO_CARGO_NEW_VCS="none"
|
||||
ENV CARGO_BUILD_RUSTFLAGS="-C target-feature=+crt-static"
|
||||
|
||||
WORKDIR /work
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN cargo build --release --target=$(arch)-unknown-linux-musl
|
||||
RUN cp "./target/$(arch)-unknown-linux-musl/release/rusty-library" /app
|
||||
|
||||
|
||||
FROM scratch
|
||||
|
||||
COPY --from=builder /app /app
|
||||
CMD ["/app", "--", "/library"]
|
||||
|
||||
VOLUME ["/library"]
|
||||
EXPOSE 3000
|
Loading…
Add table
Add a link
Reference in a new issue