Initial commit
This commit is contained in:
commit
2f64b51f86
10 changed files with 661 additions and 0 deletions
20
Containerfile
Normal file
20
Containerfile
Normal file
|
@ -0,0 +1,20 @@
|
|||
FROM quay.io/toolbx-images/alpine-toolbox:edge
|
||||
|
||||
LABEL com.github.containers.toolbox="true" \
|
||||
usage="This image is meant to be used with the toolbox or distrobox command" \
|
||||
summary="A cloud-native terminal experience" \
|
||||
maintainer="jorge.castro@gmail.com"
|
||||
|
||||
COPY extra-packages /
|
||||
RUN apk update && \
|
||||
apk upgrade && \
|
||||
grep -v '^#' /extra-packages | xargs apk add
|
||||
RUN rm /extra-packages
|
||||
|
||||
RUN ln -fs /bin/sh /usr/bin/sh && \
|
||||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/docker && \
|
||||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/flatpak && \
|
||||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman && \
|
||||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree && \
|
||||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/transactional-update
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue