Skip to content

Commit

Permalink
Add a couple of new Dockerfiles based on Ubuntu Focal.
Browse files Browse the repository at this point in the history
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
ctalledo committed Jun 27, 2021
1 parent c47904c commit 35b7423
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ubuntu-focal-compose/Dockerfile
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
21 changes: 21 additions & 0 deletions ubuntu-focal-docker-dbg/Dockerfile
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"]

0 comments on commit 35b7423

Please sign in to comment.