Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 64317fa

Browse files
ctalledorodnymolina
authored andcommitted
First commit of dockerfile for bionic + docker sys container image.
1 parent b096f77 commit 64317fa

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# Ubuntu Bionic + Docker
3+
#
4+
# Instructions for docker installation taken from:
5+
# https://docs.docker.com/install/linux/docker-ce/ubuntu/
6+
#
7+
8+
FROM ubuntu:bionic
9+
10+
# Docker install
11+
RUN apt-get update && apt-get install --no-install-recommends -y \
12+
apt-transport-https \
13+
ca-certificates \
14+
curl \
15+
gnupg-agent \
16+
software-properties-common
17+
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
18+
RUN apt-key fingerprint 0EBFCD88
19+
20+
RUN add-apt-repository \
21+
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
22+
$(lsb_release -cs) \
23+
stable"
24+
RUN apt-get update && apt-get install --no-install-recommends -y docker-ce docker-ce-cli containerd.io

0 commit comments

Comments
 (0)