Compare commits
4 Commits
342bff7c20
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29a1688105 | ||
|
|
8061efeb9f | ||
|
|
aeab43a16b | ||
|
|
5886eed9cc |
10
bullseye-docker/Dockerfile
Normal file
10
bullseye-docker/Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM git.uumas.fi/uumas/molecule-testbed:bullseye
|
||||
RUN apt-get update && apt-get install -y apt-transport-https ca-certificates curl gnupg && rm -rf /var/lib/apt/lists/*
|
||||
RUN mkdir -p /etc/apt/keyrings && \
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg > /etc/apt/keyrings/docker.asc && \
|
||||
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian bullseye stable" \
|
||||
> /etc/apt/sources.list.d/docker.list && \
|
||||
apt-get update && \
|
||||
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin python3-docker && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
VOLUME /var/lib/docker
|
||||
@@ -1,2 +1,3 @@
|
||||
FROM debian:bullseye
|
||||
RUN apt-get update && apt-get install -y python3 && apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
RUN apt-get update && apt-get install -y python3 systemd && rm -rf /var/lib/apt/lists/*
|
||||
CMD ["/lib/systemd/systemd"]
|
||||
|
||||
3
stream9/Dockerfile
Normal file
3
stream9/Dockerfile
Normal file
@@ -0,0 +1,3 @@
|
||||
FROM quay.io/centos/centos:stream9
|
||||
RUN dnf -y install systemd && dnf clean all
|
||||
CMD ["/lib/systemd/systemd"]
|
||||
Reference in New Issue
Block a user