code-server/Dockerfile
Luzifer.io Jenkins bce3585504 Code-Server 4.21.1
2024-02-09 22:47:43 +00:00

23 lines
616 B
Docker

FROM luzifer/archlinux
ARG CODE_SERVER_VERSION=4.21.1
ARG DUMB_INIT_VERSION=1.2.5
ARG FIXUID_VERSION=0.5.1
COPY build.sh /usr/local/bin/build.sh
RUN set -ex \
&& bash /usr/local/bin/build.sh
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
EXPOSE 8080
# This way, if someone sets $DOCKER_USER, docker-exec will still work as
# the uid will remain the same. note: only relevant if -u isn't passed to
# docker-run.
USER 1000
ENV USER=coder
WORKDIR /home/coder
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["--auth", "none", "--bind-addr", "0.0.0.0:8080", "--session-socket", "/tmp/code-server-ipc.sock", "."]