thedocks/code-serverx/Dockerfile

46 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-03-02 21:20:52 +00:00
FROM ghcr.io/linuxserver/code-server:4.0.2
2022-02-08 17:38:00 +00:00
2022-03-02 21:20:52 +00:00
ARG TARGETARCH
ARG BUILDARCH
2022-03-02 21:44:42 +00:00
RUN echo "I'm building vscode-basex for ${BUILDARCH} on ${TARGETARCH}"
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-02-08 17:38:00 +00:00
RUN curl https://files.basex.org/releases/9.6.4/BaseX964.zip | jar xv && \
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-02-08 18:15:32 +00:00
2022-03-03 01:18:26 +00:00
# extensions to code-server
2022-03-03 01:58:48 +00:00
COPY extensions /exts/
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