Skip to content

Commit

Permalink
fix(docker): use correct copy path
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu committed Jul 21, 2023
1 parent 6a55929 commit 3633bb1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ USER codespace

# Install vscode extensions
WORKDIR /tmp/shakefu
COPY .devcontainer/extensions.sh /tmp/shakefu
COPY .devcontainer/extensions.sh ./extensions.sh
# TODO: Remove chmod once executable bit is set
RUN chmod +x /tmp/shakefu/extensions.sh && /tmp/shakefu/extensions.sh && rm /tmp/shakefu/extensions.sh
RUN chmod +x extensions.sh
RUN ./extensions.sh && \
rm extensions.sh

# Build home tool from source
WORKDIR /tmp/shakefu/home
Expand Down

0 comments on commit 3633bb1

Please sign in to comment.