mirror of
https://github.com/anomalyco/opencode.git
synced 2026-02-01 22:48:16 +00:00
Add prebuilt build images and a publish workflow to speed CI by reusing heavy dependencies.
13 lines
295 B
Docker
13 lines
295 B
Docker
ARG REGISTRY=ghcr.io/anomalyco
|
|
FROM ${REGISTRY}/build/rust:24.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
libappindicator3-dev \
|
|
libwebkit2gtk-4.1-dev \
|
|
librsvg2-dev \
|
|
patchelf \
|
|
&& rm -rf /var/lib/apt/lists/*
|