2024-08-08 14:20:41 +00:00
|
|
|
FROM ubuntu:22.04
|
2024-08-07 16:16:21 +00:00
|
|
|
WORKDIR /usr/src/deployer_test
|
2024-08-08 14:20:41 +00:00
|
|
|
RUN mkdir -p /data/mounted && \
|
|
|
|
apt-get -y update && apt-get install -y \
|
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
gnupg \
|
|
|
|
lsb-release &&\
|
|
|
|
apt-get -y update &&\
|
|
|
|
apt-get -y install ca-certificates curl && \
|
|
|
|
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 && \
|
|
|
|
apt-get -y update && \
|
|
|
|
apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
|
|
|
CMD ["sh"]
|
2024-08-07 16:16:21 +00:00
|
|
|
|