Create first Docker image

This commit is contained in:
Pierre HUBERT 2024-09-17 11:43:38 +02:00
commit 49f410f87c
3 changed files with 10 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# GNS3 Docker appliances
Appliances used to build GNS3 labs.

5
host/Dockerfile Normal file
View File

@ -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/*

2
host/build.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
sudo docker build -t pierre42100/gns3-appliance-host .