-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 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,3 +1,5 @@ | ||
## Change Log | ||
### Version 11.0.0 (2021-10-22) | ||
- Upgrade to Debian 11 Bullseye | ||
### Version 9.0.0 (2017-09-25) | ||
- Initial release |
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,19 +1,19 @@ | ||
# | ||
# Dockerfile for Debian | ||
# | ||
FROM debian:stretch | ||
FROM debian:bullseye | ||
MAINTAINER Jean-Marc Tremeaux <[email protected]> | ||
|
||
# Run Debian in non interactive mode | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Install Sismics repository & a few utils | ||
RUN apt-get update && \ | ||
apt-get install -y apt-transport-https software-properties-common wget curl gnupg vim less procps unzip && \ | ||
apt-get install -y apt-transport-https wget curl gnupg vim less procps unzip && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://www.sismics.com/pgp | apt-key add - | ||
RUN add-apt-repository "deb [arch=amd64] https://nexus.sismics.com/repository/apt-stretch/ stretch main" | ||
RUN echo "deb [arch=amd64] https://nexus.sismics.com/repository/apt-stretch/ stretch main" >> /etc/apt/sources.list | ||
|
||
# Configure settings | ||
ENV LANG C.UTF-8 | ||
|
@@ -22,4 +22,3 @@ RUN echo "Europe/Paris" > /etc/timezone | |
RUN dpkg-reconfigure tzdata | ||
COPY etc /etc | ||
RUN echo "for f in \`ls /etc/bashrc.d/*\`; do . \$f; done;" >> ~/.bashrc | ||
RUN rm -rf /var/lib/apt/lists/* |