-
I would like to use the devcontainer settings in CI. The expectation is the action to mount the repo folder while building the image and running the container when performing the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
When building an image, the context is relative to the location of
|
Beta Was this translation helpful? Give feedback.
When building an image, the context is relative to the location of
devcontainer.json
. Since this is typically in the.devcontainer
folder, you'll want to set"context": ".."
to be able to pull in content from the repo root via COPY.