Skip to content

Commit

Permalink
added new distros
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderP committed Oct 31, 2024
1 parent 5f28be3 commit 8600f4e
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 5 deletions.
14 changes: 9 additions & 5 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,24 @@ blue() { echo -e "\\e[1;34m$1\\e[0;39;49m"; }
green_n() { echo -en "\\e[1;32m$1\\e[0;39;49m"; }
DIST=("almalinux_8" \
"almalinux_9" \
"alt_p10" \
"alt_p11" \
"debian_10" \
"debian_11" \
"debian_12" \
"fedora_29" \
"fedora_30" \
"fedora_31" \
"fedora_32" \
"debian_13" \
"fedora_38" \
"fedora_39" \
"fedora_40" \
"fedora_41" \
"ubuntu_14.04" \
"ubuntu_16.04" \
"ubuntu_18.04" \
"ubuntu_20.04" \
"ubuntu_22.04" \
"ubuntu_24.04" \
"ubuntu_23.10" \
"ubuntu_24.04" \
"ubuntu_24.10" \
"opensuse_15.3" \
"opensuse_15.4" \
"opensuse_15.5"\
Expand Down
7 changes: 7 additions & 0 deletions test/alt_p10/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM alt:p10
RUN apt-get update && apt-get dist-upgrade -y
RUN apt-get install -y libfuse3 fuse3

RUN mkdir /build
WORKDIR /build
VOLUME ["/build"]
7 changes: 7 additions & 0 deletions test/alt_p11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM alt:p11
RUN apt-get update && apt-get dist-upgrade -y
RUN apt-get install -y libfuse3 fuse3

RUN mkdir /build
WORKDIR /build
VOLUME ["/build"]
7 changes: 7 additions & 0 deletions test/debian_13/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM debian:trixie
RUN apt-get update && apt-get dist-upgrade -y
RUN apt-get install -y libfuse2 fuse

RUN mkdir /build
WORKDIR /build
VOLUME ["/build"]
7 changes: 7 additions & 0 deletions test/fedora_41/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM fedora:41
RUN yum update -y
RUN yum -y install fuse fuse-libs

RUN mkdir /build
WORKDIR /build
VOLUME ["/build"]
7 changes: 7 additions & 0 deletions test/ubuntu_24.10/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM ubuntu:24.10
RUN apt-get update && apt-get dist-upgrade -y
RUN apt-get install -y libfuse2 fuse

RUN mkdir /build
WORKDIR /build
VOLUME ["/build"]

0 comments on commit 8600f4e

Please sign in to comment.