Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix file paths in Dockerfile and CI workflow
  • Loading branch information
matifali committed Jan 17, 2024
commit 6c8c282b115cf3abc84f4466031f486e3972cf93
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ jobs:
mkdir -p base-build-context

# copy the build artifacts to the build context
cp build/coder_*_linux_* build-context
cp build/coder_linux_* build-context/

# export version, base_tag, and tag as outputs
echo "version=$version" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.multiarch
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ LABEL \


# The coder binary is available in the build context.
COPY --chown=1000:1000 --chmod=755 coder_*_linux_${TARGETARCH} /opt/coder
COPY --chown=1000:1000 --chmod=755 coder_linux_${TARGETARCH} /opt/coder

ENTRYPOINT [ "/opt/coder", "server" ]