forked from aws-cloudformation/cloudformation-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
25 lines (17 loc) · 892 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
####################################################################################################
## Build Container
####################################################################################################
FROM rust:latest AS builder
RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-tools musl-dev
WORKDIR /usr/src/cloudformation-guard
COPY . .
RUN cargo build --target x86_64-unknown-linux-musl --release
####################################################################################################
## Execution container
####################################################################################################
FROM alpine
WORKDIR /usr/src/cloudformation-guard
# Copy our build
COPY --from=builder /usr/src/cloudformation-guard/target/x86_64-unknown-linux-musl/release/cfn-guard .
CMD [ "./cfn-guard", "--help" ]