Skip to content

Commit 73a3af6

Browse files
chore: reduce diff
1 parent e42179f commit 73a3af6

File tree

2 files changed

+11
-17
lines changed

2 files changed

+11
-17
lines changed

docker/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ARG UID=10001
2323
ARG GID=${UID}
2424
ARG USER="zebra"
2525
ARG HOME="/home/${USER}"
26-
ARG CARGO_HOME="${HOME}/.cargo/"
26+
ARG CARGO_HOME="${HOME}/.cargo"
2727

2828
# This stage prepares Zebra's build deps and captures build args as env vars.
2929
FROM rust:${RUST_VERSION}-bookworm AS deps
@@ -123,8 +123,8 @@ COPY --from=tianon/gosu:bookworm /gosu /usr/local/bin/
123123
ENV ZEBRA_CONF_PATH="${HOME}/.config/zebrad.toml"
124124
COPY --chown=${UID}:${GID} ./docker/default-zebra-config.toml ${ZEBRA_CONF_PATH}
125125

126-
# As tests are run as the non-root user, we need to set the correct permissions
127-
# for the cargo home dir.
126+
# As the build has already run as root user, we need to set the correct permissions
127+
# for the home and cargo home dirs owned by root.
128128
RUN chown -R ${UID}:${GID} "${HOME}" && \
129129
chown -R ${UID}:${GID} "${CARGO_HOME}"
130130

docker/entrypoint.sh

+8-14
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ prepare_conf_file() {
5656

5757
# Set a custom state, network and cookie cache dirs.
5858
#
59-
# We're pointing all three dirs at the same location, so users will find all
60-
# cached data in that single location. We can introduce more env vars and use
61-
# them to set the cache dirs separately if needed.
59+
# We're pointing all three cache dirs at the same location, so users will find
60+
# all cached data in that single location. We can introduce more env vars and
61+
# use them to set the cache dirs separately if needed.
6262
if [[ -n "${ZEBRA_CACHE_DIR}" ]]; then
6363
mkdir -p "${ZEBRA_CACHE_DIR//\"/}"
6464
chown -R "${UID}:${GID}" "${ZEBRA_CACHE_DIR//\"/}"
@@ -107,7 +107,7 @@ prepare_conf_file() {
107107

108108
# Runs cargo test with an arbitrary number of arguments.
109109
#
110-
# ## Positional Parameters
110+
# Positional Parameters
111111
#
112112
# - '$1' must contain
113113
# - either cargo FEATURES as described here:
@@ -121,25 +121,19 @@ run_cargo_test() {
121121
shift
122122

123123
# Start constructing the command array
124-
local cmd_args=(
125-
cargo test --locked --release
126-
--features "${features}"
127-
--package zebrad
128-
--test acceptance
129-
-- --nocapture --include-ignored
130-
)
124+
local cmd="cargo test --locked --release --features ${features} --package zebrad --test acceptance -- --nocapture --include-ignored"
131125

132126
# Loop through the remaining arguments
133127
for arg in "$@"; do
134128
if [[ -n ${arg} ]]; then
135129
# If the argument is non-empty, add it to the command
136-
cmd_args+=("${arg}")
130+
cmd+=("${arg}")
137131
fi
138132
done
139133

140-
echo "Running: ${cmd_args[*]}"
134+
echo "Running: ${cmd[*]}"
141135
# Execute directly to become PID 1
142-
exec_as_user "${cmd_args[@]}"
136+
exec_as_user "${cmd[@]}"
143137
}
144138

145139
# Runs tests depending on the env vars.

0 commit comments

Comments
 (0)