-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a couple of new Dockerfiles based on Ubuntu Focal.
These are used by Sysbox's CI tests, which previously relied on the Ubuntu Bionic version of the same images. Signed-off-by: Cesar Talledo <[email protected]>
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# Ubuntu Focal + Docker + Compose | ||
# | ||
# Instructions for Docker compose installation taken from: | ||
# https://docs.docker.com/compose/install/ | ||
# | ||
|
||
FROM nestybox/ubuntu-focal-docker:latest | ||
|
||
RUN curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \ | ||
chmod +x /usr/local/bin/docker-compose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Ubuntu Focal + Docker | ||
# | ||
# Instructions for docker installation taken from: | ||
# https://docs.docker.com/install/linux/docker-ce/ubuntu/ | ||
# | ||
|
||
FROM nestybox/ubuntu-focal-docker:latest | ||
|
||
# Debug utilities | ||
RUN apt-get update && apt-get install -y \ | ||
procps \ | ||
psmisc \ | ||
nano \ | ||
strace \ | ||
net-tools \ | ||
less \ | ||
wget \ | ||
iproute2 | ||
|
||
CMD ["/bin/bash"] |