tool copy fix

This commit is contained in:
2026-02-20 14:42:51 -05:00
parent c01ace8ec7
commit 8913225b5c

View File

@@ -31,8 +31,8 @@ RUN GOG_VERSION=$(curl -s https://api.github.com/repos/steipete/gogcli/releases/
&& chmod +x /usr/local/bin/gog
# Copy custom tools into the image
COPY docker/tools/* /usr/local/bin/
COPY docker/bin/* /usr/local/bin/
COPY tools/* /usr/local/bin/
COPY bin/* /usr/local/bin/
RUN chmod +x /usr/local/bin/*
# Create directories in the persistent volume location
@@ -40,7 +40,8 @@ RUN mkdir -p /home/node/.openclaw/ssh /home/node/.openclaw/gog \
&& chown -R node:node /home/node/.openclaw
# Link gog config and ssh to standard locations
RUN ln -sf /home/node/.openclaw/gog /home/node/.config/gog \
RUN mkdir -p /home/node/.config /home/node/.ssh \
&& ln -sf /home/node/.openclaw/gog /home/node/.config/gog \
&& ln -sf /home/node/.openclaw/ssh /home/node/.ssh
# Switch back to node user