2020-01-09 05:30:44 +07:00
|
|
|
FROM node:12.14.0
|
2020-01-15 04:06:49 +07:00
|
|
|
ARG tag
|
2019-09-18 02:00:51 +07:00
|
|
|
ARG githubToken
|
2019-03-07 09:59:43 +07:00
|
|
|
|
2019-03-14 02:00:36 +07:00
|
|
|
# Install VS Code's deps. These are the only two it seems we need.
|
2019-03-08 01:49:27 +07:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2020-02-05 02:27:46 +07:00
|
|
|
libxkbfile-dev \
|
|
|
|
libsecret-1-dev
|
2019-03-07 09:59:43 +07:00
|
|
|
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
2019-03-08 01:49:27 +07:00
|
|
|
|
2019-07-16 01:23:29 +07:00
|
|
|
RUN yarn \
|
2020-02-05 02:27:46 +07:00
|
|
|
&& DRONE_TAG="$tag" MINIFY=true STRIP_BIN_TARGET=true GITHUB_TOKEN="$githubToken" ./scripts/ci.bash \
|
|
|
|
&& rm -r /src/build \
|
|
|
|
&& rm -r /src/source
|
2019-03-07 09:59:43 +07:00
|
|
|
|
2020-01-15 04:06:49 +07:00
|
|
|
# We deploy with Ubuntu so that devs have a familiar environment.
|
2019-04-05 04:43:23 +07:00
|
|
|
FROM ubuntu:18.04
|
2019-03-14 02:00:36 +07:00
|
|
|
|
2019-03-12 09:55:11 +07:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2020-02-05 02:27:46 +07:00
|
|
|
openssl \
|
|
|
|
net-tools \
|
|
|
|
git \
|
|
|
|
locales \
|
|
|
|
sudo \
|
|
|
|
dumb-init \
|
|
|
|
vim \
|
|
|
|
curl \
|
|
|
|
wget \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2019-04-05 04:43:23 +07:00
|
|
|
|
2019-03-12 09:55:11 +07:00
|
|
|
RUN locale-gen en_US.UTF-8
|
2019-07-16 01:23:29 +07:00
|
|
|
# We cannot use update-locale because docker will not use the env variables
|
2019-04-03 07:24:44 +07:00
|
|
|
# configured in /etc/default/locale so we need to set it manually.
|
2019-10-24 01:33:53 +07:00
|
|
|
ENV LC_ALL=en_US.UTF-8 \
|
2020-02-05 02:27:46 +07:00
|
|
|
SHELL=/bin/bash
|
2019-04-05 04:43:23 +07:00
|
|
|
|
2019-04-05 08:00:42 +07:00
|
|
|
RUN adduser --gecos '' --disabled-password coder && \
|
2020-02-05 02:27:46 +07:00
|
|
|
echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
|
2019-04-05 04:43:23 +07:00
|
|
|
|
|
|
|
USER coder
|
2020-01-15 04:06:49 +07:00
|
|
|
# Create first so these directories will be owned by coder instead of root
|
|
|
|
# (workdir and mounting appear to both default to root).
|
2019-04-18 05:36:33 +07:00
|
|
|
RUN mkdir -p /home/coder/project
|
2019-12-11 01:06:52 +07:00
|
|
|
RUN mkdir -p /home/coder/.local/share/code-server
|
2019-04-14 11:34:25 +07:00
|
|
|
|
2019-04-05 04:43:23 +07:00
|
|
|
WORKDIR /home/coder/project
|
|
|
|
|
2019-07-16 01:23:29 +07:00
|
|
|
# This ensures we have a volume mounted even if the user forgot to do bind
|
|
|
|
# mount. So that they do not lose their data if they delete the container.
|
2019-04-14 11:34:25 +07:00
|
|
|
VOLUME [ "/home/coder/project" ]
|
|
|
|
|
2019-10-22 00:25:18 +07:00
|
|
|
COPY --from=0 /src/binaries/code-server /usr/local/bin/code-server
|
2019-08-08 23:21:45 +07:00
|
|
|
EXPOSE 8080
|
2019-04-05 04:43:23 +07:00
|
|
|
|
2019-07-16 01:23:29 +07:00
|
|
|
ENTRYPOINT ["dumb-init", "code-server", "--host", "0.0.0.0"]
|