Add .gitignore, clean up build artifacts, add test scripts and configuration files
Some checks failed
Build Simple CLI / build (push) Failing after 1s
Some checks failed
Build Simple CLI / build (push) Failing after 1s
This commit is contained in:
parent
882552f4e7
commit
6aa6d32e1e
12 changed files with 128 additions and 185 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue