mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
This PR fixes `docker compose up` but it doesn't have the test client -> resource flow working but it prevent anything from erroring at startup. This fixes: * tokens (use the correct token for the client user agent we are using) * randomize `name_suffix` at start up for connlib (we will eventually allow options to set it manually) * remove port ranges for relay (see firezone/product#613)
31 lines
1.2 KiB
Docker
31 lines
1.2 KiB
Docker
FROM rust:1.70-slim as BUILDER
|
|
ARG PACKAGE
|
|
WORKDIR /build/
|
|
COPY . ./
|
|
RUN --mount=type=cache,target=./target \
|
|
--mount=type=cache,target=/usr/local/cargo/registry,sharing=locked \
|
|
--mount=type=cache,target=/usr/local/rustup,sharing=locked \
|
|
apt update && apt install -y musl-tools && \
|
|
cargo build -p $PACKAGE --release --target x86_64-unknown-linux-musl
|
|
|
|
RUN --mount=type=cache,target=./target \
|
|
mv ./target/x86_64-unknown-linux-musl/release/$PACKAGE /usr/local/bin/$PACKAGE
|
|
|
|
FROM alpine:3.18
|
|
ARG PACKAGE
|
|
WORKDIR /app/
|
|
COPY --from=BUILDER /usr/local/bin/$PACKAGE .
|
|
ENV RUST_BACKTRACE=1
|
|
ENV PATH "/app:$PATH"
|
|
ENV PACKAGE_NAME ${PACKAGE}
|
|
# Some black magics here:
|
|
# we need to use `/bin/sh -c` so that the env variable is correctly replaced
|
|
# but then everything in `CMD` is placed after the executed string, so we need
|
|
# to move it inside, these are passed as the variables `$0`, `$1`, `$2`, etc...
|
|
# this means that this will ignore after the first arguments
|
|
# if we ever combine this with `CMD` in exec form so always use shell form
|
|
# (Note we could use shell-form here, but this is the same made explicit)
|
|
ENTRYPOINT ["/bin/sh", "-c", "$PACKAGE_NAME $0"]
|
|
# *sigh* if we don't add this $0 becomes /bin/sh in the command above
|
|
CMD [""]
|