thedocks/code-serverx/Dockerfile

58 lines
1.7 KiB
Docker
Raw Normal View History

2022-02-08 17:38:00 +00:00
# A code-server image with added
2022-07-31 12:24:40 +01:00
# openjdk@11
# BaseX installed@9.7.3
# @author Andy Bunce
2022-07-31 12:24:40 +01:00
# Bugs:
# hardcoded for amd64
# Main image
2022-07-31 12:24:40 +01:00
FROM ghcr.io/linuxserver/code-server:4.5.1
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-07-31 12:24:40 +01:00
RUN curl https://files.basex.org/releases/9.7.3/BaseX973.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-07-31 12:24:40 +01:00
RUN curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.17.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-07-31 12:24:40 +01:00
# install maven
RUN curl https://dlcdn.apache.org/maven/maven-3/3.8.6/binaries/apache-maven-3.8.6-bin.tar.gz | \
tar zxv -C /usr/local/bin && \
cd /usr/local/bin && \
2022-08-07 22:55:04 +01:00
ln -s apache-maven-3.8.6 maven
ENV PATH=$PATH:/usr/local/bin/maven/bin
2022-07-31 12:24:40 +01:00
2022-08-08 11:31:55 +01:00
# install node+npm LTS see https://www.how2shout.com/linux/how-to-install-node-js-npm-on-debian-11-bullseye/
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
apt install nodejs
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