fix(deploy): add ip.html + playground.html to Dockerfile COPY - #12
Closed
StevenMih wants to merge 1 commit into
Closed
fix(deploy): add ip.html + playground.html to Dockerfile COPY#12StevenMih wants to merge 1 commit into
StevenMih wants to merge 1 commit into
Conversation
Deployed image currently drops both pages: ip.html was only present via an uncommitted local Dockerfile edit (never reached origin), and playground.html (added in the architecture pass, b13c1d2) was never wired into the COPY line at all. Both now ship with the container. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: stevenmih <stevenmih88-3@gmail.com>
Contributor
Author
|
Superseded — this same Dockerfile fix (ip.html + playground.html COPY) already landed via PR #11, which merged with the Steven-approved bilateral page content in the same commit. Closing without merging to avoid a duplicate/conflicting change; the worktree branch (fix/dockerfile-deploy-assets) is preserved, not deleted. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ip.htmlto the Dockerfile COPY line (the deployed container currently only serves it because of an uncommitted local edit — a fresh build fromorigin/mainwould drop it).playground.htmlto the same COPY line — it exists inorigin/main(architecture-pass stub,b13c1d2) but was never wired into the Dockerfile, so it 404s live today.Test plan
docker buildsucceeds/,/ip.html,/playground.html,/docs/all return 200🤖 Generated with Claude Code