mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 01:29:09 +00:00
ci: add devcontainer publishing
This commit is contained in:
parent
afbb5b8269
commit
d5fd11b413
3 changed files with 34 additions and 0 deletions
16
WORKSPACE
16
WORKSPACE
|
@ -82,3 +82,19 @@ container_deps()
|
|||
load("@io_bazel_rules_docker//repositories:pip_repositories.bzl", "pip_deps")
|
||||
|
||||
pip_deps()
|
||||
|
||||
# Dev Container stuff
|
||||
load("@io_bazel_rules_docker//contrib:dockerfile_build.bzl", "dockerfile_image")
|
||||
load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
|
||||
|
||||
container_pull(
|
||||
name = "devcontainergo",
|
||||
registry = "mcr.microsoft.com",
|
||||
repository = "vscode/devcontainers/go",
|
||||
tag = "1.15",
|
||||
)
|
||||
|
||||
dockerfile_image(
|
||||
name = "dev-container",
|
||||
dockerfile = "//.devcontainer:Dockerfile",
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue