Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
TheEvilSkeleton
Debian Jekyll
Commits
7f2740b6
Verified
Commit
7f2740b6
authored
Mar 22, 2021
by
TheEvilSkeleton
Browse files
Initial debian-jekyll-toolbox
parents
Changes
1
Show whitespace changes
Inline
Side-by-side
debian-jekyll-toolbox.Dockerfile
0 → 100644
View file @
7f2740b6
FROM
docker.io/library/debian:sid
ENV
NAME=debian-jekyll-toolbox VERSION=sid
LABEL
com.github.containers.toolbox="true" \
com.github.debarshiray.toolbox="true" \
name="$NAME" \
version="$VERSION" \
usage="This image is meant to be used with the toolbox command" \
summary="Base image for creating Debian Jekyll Sid toolbox containers"
RUN
apt-get update
&&
apt-get
-y
upgrade
&&
\
apt-get
-y
install
\
bash-completion
\
git
\
keyutils
\
libcap2-bin
\
lsof
\
man-db
\
mlocate
\
mtr
\
rsync
\
sudo
\
tcpdump
\
time
\
traceroute
\
tree
\
unzip
\
wget
\
zip
\
ruby-full
\
build-essential
&&
\
apt-get clean
RUN
gem
install
\
jekyll
\
bundler
RUN
sed
-i
-e
's/ ALL$/ NOPASSWD:ALL/'
/etc/sudoers
RUN
echo
VARIANT_ID
=
container
>>
/etc/os-release
RUN
touch
/etc/localtime
CMD
/bin/sh
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment