diff options
| author | Dax Raad <[email protected]> | 2026-01-29 23:07:58 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-01-29 23:07:58 -0500 |
| commit | 5cfb5fdd0664632956056a1004ab1857a8eb3673 (patch) | |
| tree | df571be285045a90ae461ce73a966d24f95146a1 /packages/containers/base/Dockerfile | |
| parent | 30969dc33e20858a9b7773aa19ad345335a644c1 (diff) | |
| download | opencode-5cfb5fdd0664632956056a1004ab1857a8eb3673.tar.gz opencode-5cfb5fdd0664632956056a1004ab1857a8eb3673.zip | |
ci: add container build workflow
Add prebuilt build images and a publish workflow to speed CI by reusing heavy dependencies.
Diffstat (limited to 'packages/containers/base/Dockerfile')
| -rw-r--r-- | packages/containers/base/Dockerfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/containers/base/Dockerfile b/packages/containers/base/Dockerfile new file mode 100644 index 000000000..a81f4baa2 --- /dev/null +++ b/packages/containers/base/Dockerfile @@ -0,0 +1,18 @@ +FROM ubuntu:24.04 + +ARG DEBIAN_FRONTEND=noninteractive + +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + build-essential \ + ca-certificates \ + curl \ + git \ + jq \ + openssh-client \ + pkg-config \ + python3 \ + unzip \ + xz-utils \ + zip \ + && rm -rf /var/lib/apt/lists/* |
