thedocks/code-serverx/Dockerfile

44 lines
1.2 KiB
Docker
Raw Normal View History

2022-02-08 17:38:00 +00:00
# A code-server image with added
# openjdk 11
# BaseX installed
# @author Andy Bunce
# Main image
2022-04-18 15:00:47 +01:00
FROM ghcr.io/linuxserver/code-server:4.3.0
2022-02-08 17:38:00 +00:00
2022-03-02 21:20:52 +00:00
ARG TARGETARCH
ARG BUILDARCH
2022-05-02 11:41:25 +01:00
RUN echo "I'm building vscode-basex for ${BUILDARCH} on ${TARGETARCH} User: ${PUID}"
2022-02-08 17:38:00 +00:00
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 17:38:00 +00:00
apt-get install -y openjdk-11-jdk-headless;
2022-02-08 12:36:53 +00:00
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 17:38:00 +00:00
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64/
RUN export JAVA_HOME
2022-03-02 21:20:52 +00:00
# install BaseX to /basex/
2022-05-09 16:55:26 +01:00
RUN curl https://files.basex.org/releases/latest/BaseX972-20220508.135439.zip | jar xv && \
2022-05-02 11:41:25 +01:00
chown -R $PUID:$PGID /basex && chmod a+x /basex/bin/* ;
2022-03-02 23:46:58 +00:00
ENV PATH=$PATH:/basex/bin
2022-02-08 18:09:35 +00:00
# install docker cli only
2022-03-02 21:39:09 +00:00
RUN curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.12.tgz | tar zxv -C /tmp/ && \
2022-03-02 21:20:52 +00:00
cp /tmp/docker/docker /usr/local/bin && rm -r /tmp/docker;
2022-03-03 00:51:24 +00:00
#RUN chmod 666 /var/run/docker.sock
2022-03-07 12:11:24 +00:00
2022-03-03 01:54:04 +00:00
#RUN /usr/local/bin/code-server --install-extension vscode-basex-0.0.21.vsix
2022-03-03 01:21:16 +00:00
2022-02-08 18:15:32 +00:00
# ports and volumes
EXPOSE 8443