From a91bb70be3df56beb7525387762e95293cb9ea16 Mon Sep 17 00:00:00 2001 From: redteamguides <127832190+redteamguides@users.noreply.github.com> Date: Fri, 20 Oct 2023 16:10:41 +0330 Subject: [PATCH] Delete build.sh --- build.sh | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 build.sh diff --git a/build.sh b/build.sh deleted file mode 100755 index ae48977..0000000 --- a/build.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash -# Description : Build jekyll pages with docker without installation of ruby or gem -# Howto : -# run ./build.sh in current directory -# required : Docker -# source : https://github.com/envygeeks/jekyll-docker/blob/master/README.md - - -_JEKYLL_VERSION="${JEKYLL_VERSION:-3.8}" - -docker run --rm \ - -it \ - --ipc=host \ - --net=host \ - --volume="${PWD}:/srv/jekyll:Z" \ - --volume="${PWD}/vendor:/usr/local/bundle:Z" \ - jekyll/jekyll:${_JEKYLL_VERSION} \ - jekyll build