fix the dockerfile used in the CI for storagehub use;

This commit is contained in:
undercover-cactus 2026-01-29 10:13:08 +01:00
parent 819cde5a02
commit 9278e2cd05

View file

@ -53,9 +53,9 @@ COPY --from=builder \
# Create datahaven user and directories
RUN useradd -m -u 1001 -U -s /bin/sh -d /datahaven datahaven && \
mkdir -p /datahaven/.local/share /data && \
chown -R datahaven:datahaven /data && \
ln -s /data /datahaven/.local/share/datahaven
mkdir -p /data /datahaven/.local/share /specs /storage && \
chown -R datahaven:datahaven /data /storage && \
ln -s /data /datahaven/.local/share/datahaven-node
USER datahaven