2023-10-21 14:49:24 +00:00
|
|
|
ARG BUILDER_IMAGE=builder_cache
|
|
|
|
|
|
|
|
############################################################
|
|
|
|
# Cache image with all the deps
|
2024-05-16 07:13:59 +00:00
|
|
|
FROM rust:1.78-bookworm AS builder_cache
|
2023-10-21 14:49:24 +00:00
|
|
|
|
|
|
|
RUN rustup component add rustfmt clippy
|
|
|
|
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . ./
|
|
|
|
|
|
|
|
|
|
|
|
RUN cargo fmt --all -- --check --color=always || (echo "Use cargo fmt to format your code"; exit 1)
|
|
|
|
RUN cargo clippy --all --all-features -- -D warnings || (echo "Solve your clippy warnings to succeed"; exit 1)
|
|
|
|
|
|
|
|
#RUN cargo test --all --all-features
|
|
|
|
#RUN just test "tcp://localhost:2375" || (echo "Test are failing"; exit 1)
|
|
|
|
|
|
|
|
#ENV RUSTFLAGS="-C link-arg=-Wl,--compress-debug-sections=zlib -C force-frame-pointers=yes"
|
|
|
|
RUN cargo build --tests --all-features
|
|
|
|
#RUN cargo build --release --all-features
|
|
|
|
|
|
|
|
|
|
|
|
############################################################
|
|
|
|
# Builder for production image
|
|
|
|
FROM ${BUILDER_IMAGE} AS builder_release
|
|
|
|
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . ./
|
|
|
|
|
|
|
|
ARG BIN_TARGET=--bins
|
|
|
|
ARG PROFILE=release
|
|
|
|
|
|
|
|
#ENV RUSTFLAGS="-C link-arg=-Wl,--compress-debug-sections=zlib -C force-frame-pointers=yes"
|
|
|
|
RUN cargo build --profile=${PROFILE} ${BIN_TARGET}
|
|
|
|
|
|
|
|
|
|
|
|
############################################################
|
|
|
|
# Final image
|
2023-10-21 15:01:32 +00:00
|
|
|
FROM debian:bookworm-slim as final-image
|
|
|
|
|
|
|
|
RUN useradd -ms /bin/bash app && \
|
|
|
|
apt-get update && \
|
|
|
|
apt-get -y upgrade && \
|
|
|
|
apt install -y --no-install-recommends ca-certificates dumb-init && \
|
|
|
|
apt-get clean && \
|
|
|
|
rm -rf /var/lib/apt/lists
|
2023-10-21 14:49:24 +00:00
|
|
|
|
|
|
|
WORKDIR /home/app
|
|
|
|
|
|
|
|
ARG PROFILE=release
|
|
|
|
COPY --from=builder_release /build/target/${PROFILE}/wstunnel wstunnel
|
|
|
|
|
|
|
|
ENV RUST_LOG="INFO"
|
|
|
|
ENV SERVER_PROTOCOL="wss"
|
|
|
|
ENV SERVER_LISTEN="[::]"
|
|
|
|
ENV SERVER_PORT="8080"
|
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
USER app
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "-v", "--"]
|
|
|
|
CMD ["/bin/sh", "-c", "exec /home/app/wstunnel server ${SERVER_PROTOCOL}://${SERVER_LISTEN}:${SERVER_PORT}"]
|