[add] code-server
This commit is contained in:
parent
2d615f191a
commit
5fd946c04d
11 changed files with 144 additions and 43 deletions
26
code-server/Dockerfile
Normal file
26
code-server/Dockerfile
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#
|
||||
# add openjdk 11 and basex on code-server docker image
|
||||
# @author Andy Bunce
|
||||
FROM alpine:latest AS builder
|
||||
RUN apk --no-cache add zip
|
||||
ADD https://files.basex.org/releases/9.5/BaseX95.zip /srv
|
||||
RUN cd /srv && unzip *.zip && rm *.zip
|
||||
|
||||
# custom options
|
||||
COPY .basex /srv/basex/
|
||||
|
||||
# Main image
|
||||
FROM ghcr.io/linuxserver/code-server:version-v3.9.1
|
||||
LABEL author="Andy Bunce"
|
||||
LABEL company="Quodatum Ltd"
|
||||
LABEL maintainer="andy@quodatum.com"
|
||||
|
||||
|
||||
ENV JAVA_HOME="/usr/lib/jvm/default-jvm/"
|
||||
RUN apk add --no-cache bash openjdk11-jre-headless
|
||||
# Has to be set explictly to find binaries
|
||||
ENV PATH=$PATH:${JAVA_HOME}/bin
|
||||
|
||||
RUN adduser -h /srv -D -u 1000 basex
|
||||
COPY --from=builder --chown=basex:basex /srv/ /srv
|
||||
|
||||
3
code-server/README.md
Normal file
3
code-server/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# code-server
|
||||
|
||||
Installs `code-server:version-v3.9.1` with JRE and BaseX.
|
||||
8
code-server/config/.gitignore
vendored
Normal file
8
code-server/config/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# .gitignore sample
|
||||
###################
|
||||
|
||||
# Ignore all files in this dir...
|
||||
*
|
||||
|
||||
# ... except for this one.
|
||||
!.gitignore
|
||||
Loading…
Add table
Add a link
Reference in a new issue