Skip to content

Commit 40309c0

Browse files
committed
Add Docker image for CI building
This docker image is suitable for using for a CI runner to build vrnetlab images. For example, GitLab CI has a docker runner that can use this as the image to build with.
1 parent 22416f6 commit 40309c0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Diff for: ci-builder-image/Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM debian:stable
2+
3+
RUN apt-get update \
4+
&& apt-get install -y \
5+
curl \
6+
docker.io \
7+
make \
8+
&& curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \
9+
&& apt-get install -y git-lfs \
10+
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)