Initial commit

This commit is contained in:
Radek Goláň jr. 2024-03-04 18:26:50 +01:00
commit 33adddf01e
2 changed files with 17 additions and 0 deletions

2
.containerignore Normal file
View File

@ -0,0 +1,2 @@
.git
.gitea

15
Containerfile Normal file
View File

@ -0,0 +1,15 @@
FROM ubuntu:22.04
RUN apt-get update && \
apt-get install -y ca-certificates curl software-properties-common && \
install -m 0755 -d /etc/apt/keyrings && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc && \
chmod a+r /etc/apt/keyrings/docker.asc && \
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null && \
add-apt-repository ppa:cncf-buildpacks/pack-cli && \
apt-get update && \
apt-get install -y pack-cli docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin