Dockerfile: include git

Closes #221
Closes #230
Closes #203
This commit is contained in:
Anmol Sethi 2019-03-13 15:00:36 -04:00
parent 3a6e27bc87
commit 862c94401a
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB
1 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,9 @@
FROM node:8.15.0 FROM node:8.15.0
# Install VS Code's deps. These are the only two it seems we need. Install git for source control. # Install VS Code's deps. These are the only two it seems we need.
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
libxkbfile-dev \ libxkbfile-dev \
libsecret-1-dev \ libsecret-1-dev
git
# Ensure latest yarn. # Ensure latest yarn.
RUN npm install -g yarn@1.13 RUN npm install -g yarn@1.13
@ -21,12 +20,13 @@ FROM ubuntu:18.10
WORKDIR /root/project WORKDIR /root/project
COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server
EXPOSE 8443 EXPOSE 8443
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
openssl \ openssl \
net-tools \ net-tools \
locales && \ git \
locale-gen en_US.UTF-8 && \ locales
rm -rf /var/lib/apt/lists/* RUN locale-gen en_US.UTF-8
# We unfortunately cannot use update-locale because docker will not use the env variables # We unfortunately cannot use update-locale because docker will not use the env variables
# configured in /etc/default/locale so we need to set it manually. # configured in /etc/default/locale so we need to set it manually.
ENV LANG=en_US.UTF-8 ENV LANG=en_US.UTF-8