ls-code-server/Dockerfile

46 lines
1.1 KiB
Docker
Raw Normal View History

2019-06-24 20:03:06 +02:00
FROM lsiobase/ubuntu:bionic
# set version label
ARG BUILD_DATE
ARG VERSION
ARG CODE_RELEASE
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="aptalca"
# environment settings
ENV HOME="/config"
RUN \
2020-04-02 03:49:46 +02:00
echo "**** install dependencies ****" && \
2019-06-24 20:03:06 +02:00
apt-get update && \
apt-get install -y \
2019-06-24 21:42:04 +02:00
git \
2020-01-18 04:38:58 +01:00
jq \
2019-07-01 21:48:53 +02:00
nano \
net-tools \
sudo && \
2019-06-24 20:03:06 +02:00
echo "**** install code-server ****" && \
if [ -z ${CODE_RELEASE+x} ]; then \
CODE_RELEASE=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/latest" \
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
fi && \
2020-01-18 04:38:58 +01:00
CODE_URL=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/tags/${CODE_RELEASE}" \
| jq -r '.assets[] | select(.browser_download_url | contains("linux-x86_64")) | .browser_download_url') && \
2020-04-02 03:49:46 +02:00
mkdir -p /app/code-server && \
2019-06-24 20:03:06 +02:00
curl -o \
2020-01-18 04:38:58 +01:00
/tmp/code.tar.gz -L \
"${CODE_URL}" && \
2019-06-24 20:03:06 +02:00
tar xzf /tmp/code.tar.gz -C \
2020-04-02 03:49:46 +02:00
/app/code-server --strip-components=1 && \
2019-06-24 20:03:06 +02:00
echo "**** clean up ****" && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 8443