shellharden 4.3.2

The corrective bash syntax highlighter
1
2
3
4
5
6
7
8
9
10
11
12
13
# docker build . -f docker/Dockerfile --tag shellharden:latest


FROM rust:1.53.0-alpine AS build

WORKDIR /src
COPY . .
RUN cargo build --release


FROM scratch
COPY --from=build /src/target/release/shellharden /shellharden
ENTRYPOINT ["/shellharden"]