thedocks/code-serverx/Dockerfile

29 lines
718 B
Docker
Raw Normal View History

#
# add openjdk 11 and basex on code-server docker image
# @author Andy Bunce
# custom options
#COPY .basex /srv/basex/
# Main image
FROM ghcr.io/linuxserver/code-server:4.0.1
LABEL author="Andy Bunce"
LABEL company="Quodatum Ltd"
2022-02-08 11:11:29 +00:00
LABEL maintainer="quodatum@gmail.com"
2022-02-08 10:54:29 +00:00
2022-02-08 12:36:53 +00:00
# Install OpenJDK-11
2022-02-08 10:54:29 +00:00
RUN apt-get update && \
2022-02-08 12:36:53 +00:00
apt-get install -y openjdk-11-jdk-headless zip;
2022-02-08 10:54:29 +00:00
# Fix certificate issues
RUN apt-get update && \
apt-get install ca-certificates-java && \
apt-get clean && \
update-ca-certificates -f;
# Setup JAVA_HOME -- useful for docker commandline
2022-02-08 12:36:53 +00:00
#ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64/
#RUN export JAVA_HOME
2022-02-08 12:36:53 +00:00
RUN curl https://files.basex.org/releases/9.6.4/BaseX964.zip | jar xv