From 49f410f87cc188d2c18b747951ec1d8fc58a77c6 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Tue, 17 Sep 2024 11:43:38 +0200 Subject: [PATCH] Create first Docker image --- README.md | 3 +++ host/Dockerfile | 5 +++++ host/build.sh | 2 ++ 3 files changed, 10 insertions(+) create mode 100644 README.md create mode 100644 host/Dockerfile create mode 100755 host/build.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..9719d75 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# GNS3 Docker appliances + +Appliances used to build GNS3 labs. \ No newline at end of file diff --git a/host/Dockerfile b/host/Dockerfile new file mode 100644 index 0000000..673e4e9 --- /dev/null +++ b/host/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu:24.04 + +RUN apt-get update && \ + apt-get install -y nmap vim nano && \ + rm -rf /var/lib/apt/lists/* \ No newline at end of file diff --git a/host/build.sh b/host/build.sh new file mode 100755 index 0000000..65ded4c --- /dev/null +++ b/host/build.sh @@ -0,0 +1,2 @@ +#!/bin/sh +sudo docker build -t pierre42100/gns3-appliance-host . \ No newline at end of file