-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for all Dockerfile commands #44
Comments
Does it make sense to make the workflow look like below?
|
My initial preference is to directly alias the commands, so:
for when you mean to copy and
would literally execute |
What about ephemeral COPY operations? |
I think COPY operations (and other meta-directives like EXPOSE, CMD) have less of a need for ephemeral as default. In these cases, you'd have to just Or we could opt to make :COPY ephemeral by default (essentially equivalent to our existing :eval). So you would have to run
I think it's more likely that people will COPY and then do something after that, and so the :commit is redundant. It is a bit of a pain that it wouldn't be consistent across the board. Maybe our
We could do the same for :run and basically remove :eval
|
No description provided.
The text was updated successfully, but these errors were encountered: