forked from jessfraz/dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jess Frazelle <[email protected]>
- Loading branch information
Showing
8 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# -v /etc/localtime:/etc/localtime:ro \ | ||
# r.j3ss.co/bcc-tools | ||
# | ||
FROM debian:stretch-slim | ||
FROM debian:bullseye-slim | ||
MAINTAINER Jessica Frazelle <[email protected]> | ||
|
||
ENV PATH /usr/share/bcc/tools:$PATH | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:stretch-slim | ||
FROM debian:bullseye-slim | ||
LABEL maintainer "Jessie Frazelle <[email protected]>" | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
# --name slack \ | ||
# jess/slack "$@" | ||
|
||
FROM debian:jessie-slim | ||
FROM debian:bullseye-slim | ||
LABEL maintainer "Jessie Frazelle <[email protected]>" | ||
|
||
ENV LC_ALL en_US.UTF-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:jessie-slim | ||
FROM debian:bullseye-slim | ||
LABEL maintainer "Jessie Frazelle <[email protected]>" | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
|
@@ -14,7 +14,6 @@ RUN apt-get update && apt-get install -y \ | |
pkg-config \ | ||
qemu-kvm \ | ||
ruby-dev \ | ||
ruby-fog \ | ||
zlib1g-dev \ | ||
--no-install-recommends \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,14 +28,15 @@ | |
# then you can remove all the shit you copied | ||
# rm -rf /usr/share/virtualbox /usr/lib/virtualbox | ||
# | ||
FROM debian:stretch-slim | ||
FROM debian:buster-slim | ||
LABEL maintainer "Jessie Frazelle <[email protected]>" | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
libcurl3 \ | ||
libvpx4 \ | ||
libcurl4 \ | ||
libvpx5 \ | ||
procps \ | ||
--no-install-recommends \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
|
@@ -49,7 +50,7 @@ RUN buildDeps=' \ | |
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& curl -sSL https://www.virtualbox.org/download/oracle_vbox_2016.asc | apt-key add - \ | ||
&& echo "deb http://download.virtualbox.org/virtualbox/debian stretch contrib" >> /etc/apt/sources.list.d/virtualbox.list \ | ||
&& echo "deb http://download.virtualbox.org/virtualbox/debian buster contrib" >> /etc/apt/sources.list.d/virtualbox.list \ | ||
&& apt-get update && apt-get install -y \ | ||
virtualbox-5.2 \ | ||
--no-install-recommends \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
# --name vlc \ | ||
# jess/vlc | ||
# | ||
FROM debian:stretch-slim | ||
FROM debian:bullseye-slim | ||
LABEL maintainer "Jessie Frazelle <[email protected]>" | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
|