File tree 2 files changed +9
-13
lines changed
2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -122,15 +122,6 @@ COPY --from=tianon/gosu:bookworm /gosu /usr/local/bin/
122
122
ENV ZEBRA_CONF_PATH="${HOME}/.config/zebrad.toml"
123
123
COPY --chown=${UID}:${GID} ./docker/default-zebra-config.toml ${ZEBRA_CONF_PATH}
124
124
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
-
134
125
# As tests are run as the non-root user, we need to set the correct permissions
135
126
# for the cargo home dir.
136
127
RUN chown -R ${UID}:${GID} "${HOME}" && \
@@ -214,10 +205,6 @@ RUN chown -R ${UID}:${GID} ${HOME}
214
205
ARG ZEBRA_CONF_PATH="${HOME}/.config/zebrad.toml"
215
206
ENV ZEBRA_CONF_PATH=${ZEBRA_CONF_PATH}
216
207
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
-
221
208
# We're explicitly NOT using the USER directive here.
222
209
# Instead, we run as root initially and use gosu in the entrypoint.sh
223
210
# to step down to the non-privileged user. This allows us to change permissions
Original file line number Diff line number Diff line change 10
10
11
11
set -eo pipefail
12
12
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
+
13
22
# Exit early if `ZEBRA_CONF_PATH` does not point to a file.
14
23
if [[ ! -f " ${ZEBRA_CONF_PATH} " ]]; then
15
24
echo " ERROR: No Zebra config file found at ZEBRA_CONF_PATH (${ZEBRA_CONF_PATH} )."
You can’t perform that action at this time.
0 commit comments