Add .gitignore, clean up build artifacts, add test scripts and configuration files
Some checks failed
Build Simple CLI / build (push) Failing after 1s

This commit is contained in:
joe 2025-08-12 20:13:38 -07:00
parent 882552f4e7
commit 6aa6d32e1e
12 changed files with 128 additions and 185 deletions

View file

@ -26,8 +26,16 @@ RUN apt-get update && apt-get install -y \
locales \
ca-certificates \
tzdata \
podman \
skopeo \
&& rm -rf /var/lib/apt/lists/*
# Install particle-os specific packages
COPY packages/*.deb /tmp/packages/
RUN dpkg -i /tmp/packages/bootc_*.deb /tmp/packages/apt-ostree_*.deb || true && \
apt-get install -f -y && \
rm -rf /tmp/packages
# Configure locale
RUN locale-gen en_US.UTF-8
ENV LANG=en_US.UTF-8