-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dockerfile
60 lines (46 loc) · 1.62 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
FROM rust:1.74-slim-bookworm as build
# 1. Prepare to build using musl
ENV RUSTFLAGS='-C linker=x86_64-linux-gnu-gcc'
ENV CC_x86_64_unknown_linux_musl=clang
ENV AR_x86_64_unknown_linux_musl=llvm-ar
RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-dev gcc-x86-64-linux-gnu clang llvm
RUN update-ca-certificates
# 2. setup app user
ENV USER=guest
ENV UID=10001
RUN adduser \
--disabled-password \
--gecos "" \
--home "/nonexistent" \
--shell "/sbin/nologin" \
--no-create-home \
--uid "${UID}" \
"${USER}"
# 3. Create a new empty shell project
RUN cargo new --bin modbus-proxy-rs
WORKDIR /modbus-proxy-rs
# 4. Copy our manifests
COPY ./Cargo.lock ./Cargo.lock
COPY ./Cargo.toml ./Cargo.toml
# 5. Build only the dependencies to cache them
RUN cargo build --target x86_64-unknown-linux-musl --release
RUN rm src/*.rs
# 6. Now that the dependency is built, copy your source code
COPY ./src ./src
# 7. Build for release
RUN rm ./target/x86_64-unknown-linux-musl/release/deps/modbus_proxy_rs*
RUN cargo build --target x86_64-unknown-linux-musl --release
# 8. Strip debug symbols to reduce binary size
RUN x86_64-linux-gnu-strip -s ./target/x86_64-unknown-linux-musl/release/modbus-proxy-rs
# our final base
FROM scratch
COPY --from=build /etc/passwd /etc/passwd
COPY --from=build /etc/group /etc/group
# Run as guest user
USER guest:guest
# Copy the build artifact from the build stage
COPY --from=build /modbus-proxy-rs/target/x86_64-unknown-linux-musl/release/modbus-proxy-rs .
# Set the startup command to run
ENTRYPOINT ["./modbus-proxy-rs"]
CMD ["-c", "/etc/modbus-proxy.yml"]