This commit is contained in:
parent
4d6e3b8ca9
commit
85aaa7573c
1 changed files with 0 additions and 24 deletions
24
Dockerfile
24
Dockerfile
|
|
@ -1,24 +0,0 @@
|
||||||
# Dockerfile
|
|
||||||
FROM data.forgejo.org/oci/node:20-bullseye
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
|
||||||
curl \
|
|
||||||
gnupg \
|
|
||||||
ca-certificates \
|
|
||||||
lsb-release \
|
|
||||||
&& mkdir -m 0755 -p /etc/apt/keyrings \
|
|
||||||
&& curl -fsSL https://download.docker.com/linux/
|
|
||||||
|
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get install ca-certificates curl
|
|
||||||
RUN install -m 0755 -d /etc/apt/keyrings
|
|
||||||
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
|
||||||
RUN chmod a+r /etc/apt/keyrings/docker.asc
|
|
||||||
|
|
||||||
# Add the repository to Apt sources:
|
|
||||||
RUN echo \
|
|
||||||
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
|
|
||||||
$(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
|
|
||||||
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue