-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* p1gen4 * Remove cups * Fix security repo * Fix python2 * Fix python2 packages * Fix java version * Fix docker role * Disable fzf * Fix gimp * Disable packer * Disable terraform * Fix gvfs * Fix fusesmb * Fix exfat-utils * fuse3 * Fix thunderbird lightning * Fix thunderbird enigmail * Disable thunderbird extensions * Fix rxvt * Fix vulkan * Disable ubuntu font * Disable kismet * Disable kismet * Disable qt4-qtconfig * Remove non-existing software * Add missing sound firmware * Install libreoffice * Add vim packages * Lower retries * Default tools * Fix clipmenu installation * Switch to bullseye
- Loading branch information
Showing
24 changed files
with
1,063 additions
and
42 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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# vim:set ft=dockerfile: | ||
FROM debian:stretch | ||
FROM debian:bullseye | ||
MAINTAINER "cytopia" <[email protected]> | ||
|
||
RUN set -eux \ | ||
&& apt-get update \ | ||
&& apt-get install --no-install-recommends --no-install-suggests -y \ | ||
python-apt \ | ||
python-dev \ | ||
python-jmespath \ | ||
python-pip \ | ||
python-setuptools \ | ||
python3-apt \ | ||
python3-dev \ | ||
python3-jmespath \ | ||
python3-pip \ | ||
python3-setuptools \ | ||
sudo \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& apt-get purge -y --autoremove | ||
|
||
RUN set -eux \ | ||
&& pip install wheel \ | ||
&& pip install ansible | ||
&& pip3 install wheel \ | ||
&& pip3 install ansible | ||
|
||
# Add user with password-less sudo | ||
RUN set -eux \ | ||
|
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
Oops, something went wrong.