2022-04-07 00:45:06 +02:00
|
|
|
# syntax=docker/dockerfile:experimental
|
|
|
|
|
|
|
|
FROM scratch AS packages
|
|
|
|
COPY release-packages/code-server*.deb /tmp/
|
|
|
|
|
2021-08-17 05:11:47 +02:00
|
|
|
FROM debian:11
|
2020-02-15 00:54:52 +01:00
|
|
|
|
2020-03-07 00:00:27 +01:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y \
|
|
|
|
curl \
|
|
|
|
dumb-init \
|
2021-03-22 22:15:06 +01:00
|
|
|
zsh \
|
2020-03-07 00:00:27 +01:00
|
|
|
htop \
|
|
|
|
locales \
|
|
|
|
man \
|
|
|
|
nano \
|
|
|
|
git \
|
2021-12-15 00:08:25 +01:00
|
|
|
git-lfs \
|
2020-03-07 00:00:27 +01:00
|
|
|
procps \
|
2020-12-14 18:32:53 +01:00
|
|
|
openssh-client \
|
2020-03-07 00:00:27 +01:00
|
|
|
sudo \
|
2020-12-14 18:32:53 +01:00
|
|
|
vim.tiny \
|
2020-04-30 13:52:54 +02:00
|
|
|
lsb-release \
|
2021-12-15 00:08:25 +01:00
|
|
|
&& git lfs install \
|
2020-03-07 00:00:27 +01:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2020-02-15 00:54:52 +01:00
|
|
|
|
|
|
|
# https://wiki.debian.org/Locale#Manually
|
2020-03-07 00:00:47 +01:00
|
|
|
RUN sed -i "s/# en_US.UTF-8/en_US.UTF-8/" /etc/locale.gen \
|
|
|
|
&& locale-gen
|
2020-02-15 00:54:52 +01:00
|
|
|
ENV LANG=en_US.UTF-8
|
|
|
|
|
|
|
|
RUN adduser --gecos '' --disabled-password coder && \
|
2020-02-25 23:20:47 +01:00
|
|
|
echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
|
2020-02-15 00:54:52 +01:00
|
|
|
|
2020-05-08 02:44:32 +02:00
|
|
|
RUN ARCH="$(dpkg --print-architecture)" && \
|
2021-03-22 22:15:06 +01:00
|
|
|
curl -fsSL "https://github.com/boxboat/fixuid/releases/download/v0.5/fixuid-0.5-linux-$ARCH.tar.gz" | tar -C /usr/local/bin -xzf - && \
|
2020-02-15 00:54:52 +01:00
|
|
|
chown root:root /usr/local/bin/fixuid && \
|
|
|
|
chmod 4755 /usr/local/bin/fixuid && \
|
|
|
|
mkdir -p /etc/fixuid && \
|
|
|
|
printf "user: coder\ngroup: coder\n" > /etc/fixuid/config.yml
|
|
|
|
|
2020-08-25 21:38:12 +02:00
|
|
|
COPY ci/release-image/entrypoint.sh /usr/bin/entrypoint.sh
|
2022-04-07 00:45:06 +02:00
|
|
|
RUN --mount=from=packages,src=/tmp,dst=/tmp/packages dpkg -i /tmp/packages/code-server*$(dpkg --print-architecture).deb
|
2020-02-21 01:11:01 +01:00
|
|
|
|
2022-05-12 00:10:04 +02:00
|
|
|
# Allow users to have scripts run on container startup to prepare workspace.
|
|
|
|
# https://github.com/coder/code-server/issues/5177
|
|
|
|
ENV ENTRYPOINTD=${HOME}/entrypoint.d
|
|
|
|
|
2020-02-15 00:54:52 +01:00
|
|
|
EXPOSE 8080
|
2020-09-04 00:38:40 +02:00
|
|
|
# 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
|
2020-10-21 22:39:30 +02:00
|
|
|
ENV USER=coder
|
2020-02-15 00:54:52 +01:00
|
|
|
WORKDIR /home/coder
|
2020-08-25 21:38:12 +02:00
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint.sh", "--bind-addr", "0.0.0.0:8080", "."]
|