30 lines
667 B
Docker
30 lines
667 B
Docker
#
|
|
# NOTE: Use the Makefiles to build this image correctly.
|
|
#
|
|
|
|
ARG BASE_IMG=<base>
|
|
FROM $BASE_IMG
|
|
|
|
ARG TARGETARCH
|
|
|
|
# args - software versions
|
|
ARG CODESERVER_VERSION=v4.17.1
|
|
|
|
USER root
|
|
|
|
# install - code-server
|
|
RUN curl -fsSL "https://github.com/coder/code-server/releases/download/${CODESERVER_VERSION}/code-server_${CODESERVER_VERSION/v/}_${TARGETARCH}.deb" -o /tmp/code-server.deb \
|
|
&& dpkg -i /tmp/code-server.deb \
|
|
&& rm -f /tmp/code-server.deb
|
|
|
|
# s6 - copy scripts
|
|
COPY --chown=${NB_USER}:users --chmod=755 s6/ /etc
|
|
|
|
# s6 - 01-copy-tmp-home
|
|
RUN mkdir -p /tmp_home \
|
|
&& cp -r ${HOME} /tmp_home \
|
|
&& chown -R ${NB_USER}:users /tmp_home
|
|
|
|
USER $NB_UID
|
|
|
|
EXPOSE 8888 |