Skip to content

Commit

Permalink
Upgrade to Debian 11 Bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
naku committed Oct 22, 2021
1 parent b06bd9a commit f304665
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
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
7 changes: 3 additions & 4 deletions Dockerfile
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
Expand All @@ -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/*

0 comments on commit f304665

Please sign in to comment.