mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
Add prebuilt build images and a publish workflow to speed CI by reusing heavy dependencies.
11 lines
255 B
Docker
11 lines
255 B
Docker
ARG REGISTRY=ghcr.io/anomalyco
|
|
FROM ${REGISTRY}/build/bun-node:24.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
docker.io \
|
|
pacman-package-manager \
|
|
&& rm -rf /var/lib/apt/lists/*
|