Initial commit
This commit is contained in:
commit
33adddf01e
2
.containerignore
Normal file
2
.containerignore
Normal file
@ -0,0 +1,2 @@
|
||||
.git
|
||||
.gitea
|
15
Containerfile
Normal file
15
Containerfile
Normal 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user