Skip to content

Commit 8c2dc6d

Browse files
refactor(docker): remove redundant cache directory setup
- Eliminate explicit creation and ownership setting for LWD and Zebra cache directories in Dockerfile. - Introduce default values for cache directories in entrypoint script, allowing for environment variable overrides.
1 parent bb6e359 commit 8c2dc6d

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

docker/Dockerfile

-13
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,6 @@ COPY --from=tianon/gosu:bookworm /gosu /usr/local/bin/
122122
ENV ZEBRA_CONF_PATH="${HOME}/.config/zebrad.toml"
123123
COPY --chown=${UID}:${GID} ./docker/default-zebra-config.toml ${ZEBRA_CONF_PATH}
124124

125-
ENV LWD_CACHE_DIR="${HOME}/.cache/lwd"
126-
RUN mkdir -p ${LWD_CACHE_DIR} && \
127-
chown -R ${UID}:${GID} ${LWD_CACHE_DIR}
128-
129-
# Use the same cache dir as in the production environment.
130-
ENV ZEBRA_CACHE_DIR="${HOME}/.cache/zebra"
131-
RUN mkdir -p ${ZEBRA_CACHE_DIR} && \
132-
chown -R ${UID}:${GID} ${ZEBRA_CACHE_DIR}
133-
134125
# As tests are run as the non-root user, we need to set the correct permissions
135126
# for the cargo home dir.
136127
RUN chown -R ${UID}:${GID} "${HOME}" && \
@@ -214,10 +205,6 @@ RUN chown -R ${UID}:${GID} ${HOME}
214205
ARG ZEBRA_CONF_PATH="${HOME}/.config/zebrad.toml"
215206
ENV ZEBRA_CONF_PATH=${ZEBRA_CONF_PATH}
216207

217-
ARG ZEBRA_CACHE_DIR="${HOME}/.cache/zebra"
218-
ENV ZEBRA_CACHE_DIR=${ZEBRA_CACHE_DIR}
219-
RUN mkdir -p ${ZEBRA_CACHE_DIR} && chown -R ${UID}:${GID} ${ZEBRA_CACHE_DIR}
220-
221208
# We're explicitly NOT using the USER directive here.
222209
# Instead, we run as root initially and use gosu in the entrypoint.sh
223210
# to step down to the non-privileged user. This allows us to change permissions

docker/entrypoint.sh

+9
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@
1010

1111
set -eo pipefail
1212

13+
14+
# These are the default cached state directories for Zebra and lightwalletd.
15+
#
16+
# They are set to `${HOME}/.cache/zebra` and `${HOME}/.cache/lwd`
17+
# respectively, but can be overridden by setting the
18+
# `ZEBRA_CACHE_DIR` and `LWD_CACHE_DIR` environment variables.
19+
: "${ZEBRA_CACHE_DIR:=${HOME}/.cache/zebra}"
20+
: "${LWD_CACHE_DIR:=${HOME}/.cache/lwd}"
21+
1322
# Exit early if `ZEBRA_CONF_PATH` does not point to a file.
1423
if [[ ! -f "${ZEBRA_CONF_PATH}" ]]; then
1524
echo "ERROR: No Zebra config file found at ZEBRA_CONF_PATH (${ZEBRA_CONF_PATH})."

0 commit comments

Comments
 (0)