Add git.#Commit definition and git.#Image

This definition allow user to commit & push new content to repository.
I've also add a quick feature to os.#Container to write files.

Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
Tom Chauveau
2021-09-01 18:48:54 +02:00
committed by Guillaume de Rouville
parent 019b56891d
commit c8e3755188
3 changed files with 113 additions and 0 deletions

11
stdlib/git/image.cue Normal file
View File

@@ -0,0 +1,11 @@
package git
import (
"alpha.dagger.io/alpine"
)
#Image: alpine.#Image & {
package: {
git: true
}
}