Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "go-docker (shared dev-container)",
"image": "esacteksab/dev-container:2026-03-14-18-56",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"mounts": [
"source=go-docker-gh-config,target=/root/.config/gh,type=volume",
"source=go-docker-node_modules,target=${containerWorkspaceFolder}/node_modules,type=volume",
"source=go-docker-zshhistory,target=/commandhistory,type=volume"
],
"postCreateCommand": "pre-commit install --install-hooks",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
},
"extensions": [
"ms-vscode-remote.remote-containers",
"golang.go",
"ms-python.python",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"casualjim.gotemplate",
"tamasfe.even-better-toml",
"bradlc.vscode-tailwindcss",
"redhat.vscode-yaml",
"timonwong.shellcheck",
"emeraldwalk.RunOnSave"
]
}
}
}
38 changes: 0 additions & 38 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,6 @@
---
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
labels:
- "python"
commit-message:
prefix: "chore(dev-deps)"
groups:
python-minor-and-patch:
update-types:
- "minor"
- "patch"
schedule:
interval: "weekly"
day: "thursday"
time: "19:00"
timezone: "America/Chicago"
cooldown:
default-days: 7

- package-ecosystem: "github-actions"
directory: "/"
labels:
Expand Down Expand Up @@ -52,22 +33,3 @@ updates:
timezone: "America/Chicago"
cooldown:
default-days: 7

- package-ecosystem: "npm"
directory: "/"
labels:
- "javascript"
commit-message:
prefix: "chore(dev-deps)"
groups:
npm-minor-and-patch:
update-types:
- "minor"
- "patch"
schedule:
interval: "weekly"
day: "thursday"
time: "19:00"
timezone: "America/Chicago"
cooldown:
default-days: 7
16 changes: 0 additions & 16 deletions .mise.toml

This file was deleted.

27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,33 @@ This repository builds and publishes one or more Go images on a schedule using G
- Runtime base: Ubuntu 24.04 (digest pinned)
- Build schedule: Every Friday at 9:00 AM Central Time (US/Chicago)

## Local Development (VS Code Dev Container)

Local development is standardized through a shared dev-container instead of per-repo bootstrap files.

- Dev container config: [.devcontainer/devcontainer.json](.devcontainer/devcontainer.json)
- Shared environment image: `docker.io/esacteksab/dev-container:2026-03-13-20-04@sha256:ff0997d094d0ffadfc73a278ac6b2316a15f0a6025fbfc067c2348929071ded3`

### Getting started

1. Open this repository in VS Code.
1. Run the command: `Dev Containers: Reopen in Container`.
1. Wait for the container build to complete.
1. Start working with the preinstalled toolchain inside the container.

The container post-create step installs pre-commit hooks automatically.

### First-pass boilerplate removed from this repo

The following local bootstrap files were intentionally removed in favor of the shared dev-container:

- `package.json`
- `pnpm-lock.yaml`
- `requirements.txt`
- `.mise.toml`

Project policy/config files such as `.pre-commit-config.yaml`, `.prettierrc`, `.prettierignore`, and GitHub workflow files remain in this repository.

## How Versions Are Selected

The workflow resolves the build matrix in one of two ways:
Expand Down
10 changes: 0 additions & 10 deletions package.json

This file was deleted.

173 changes: 0 additions & 173 deletions pnpm-lock.yaml

This file was deleted.

1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

Loading