Skip to content

Commit

Permalink
A proper fix for the Debian 10 Java packaging bug?
Browse files Browse the repository at this point in the history
  • Loading branch information
laeti-tia committed Nov 21, 2023
1 parent 6fa1b30 commit 2078231
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docker-envs/Dockerfile-d10
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
FROM debian:10.11 AS unibuild-image

# Install pre-requisites for building packages
# ca-certificates-java only needed to circumvent a Debian/Ubuntu Java packaging bug on D10
# The rmdir/mkdir for java certs is needed to circumvent a Debian/Ubuntu Java packaging bug on D10
RUN apt-get update -y && \
apt-get upgrade -y && \
apt-get install -y sudo apt-utils curl emacs-nox gnupg htop m4 make pylint rsync screen tree vim ca-certificates-java
rmdir /etc/ssl/certs/java \
mkdir /etc/ssl/certs/java \
apt-get install -y sudo apt-utils curl emacs-nox gnupg htop m4 make pylint rsync screen tree vim

# Copy unibuild source
COPY . /usr/share/unibuild/
Expand Down

0 comments on commit 2078231

Please sign in to comment.