Add SqMod debian image, other bugfix crap
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
FROM debian:stable
|
||||
FROM debian:stretch
|
||||
|
||||
MAINTAINER Thijn <thijn@viceunderdogs.com>
|
||||
|
||||
@ -8,13 +8,29 @@ RUN apt-get update && apt-get install -y \
|
||||
unzip \
|
||||
p7zip \
|
||||
openjdk-8-jre-headless \
|
||||
openjdk-8-jdk-headless \
|
||||
libstdc++6 \
|
||||
valgrind \
|
||||
libasan3 \
|
||||
gcc \
|
||||
g++ \
|
||||
build-essential \
|
||||
libcurl3 \
|
||||
&& adduser --disabled-password --home /home/container container
|
||||
|
||||
RUN mkdir -p /usr/lib/jvm/java-12-openjdk-amd64 && cd /usr/lib/jvm/java-12-openjdk-amd64 && \
|
||||
wget 'https://download.java.net/java/GA/jdk12.0.2/e482c34c86bd4bf8b56c0b35558996b9/10/GPL/openjdk-12.0.2_linux-x64_bin.tar.gz' && \
|
||||
tar -xzv --strip-components=1 -f openjdk-12.0.2_linux-x64_bin.tar.gz
|
||||
|
||||
RUN apt-get install -y screen gdb
|
||||
RUN cd /tmp && wget 'http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb' && \
|
||||
dpkg -i libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb && rm libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb
|
||||
|
||||
USER container
|
||||
ENV USER container
|
||||
ENV HOME /home/container
|
||||
ENV VCMP_VERSION v22
|
||||
ENV VCMP_PLUGIN_PATCH patch7
|
||||
ENV VCMP_VERSION v30
|
||||
ENV VCMP_PLUGIN_PATCH patch2
|
||||
|
||||
WORKDIR /home/container
|
||||
|
||||
|
Reference in New Issue
Block a user