File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11FROM node:8.15.0
22
3- # Install VS Code's deps. These are the only two it seems we need. Install git for source control.
3+ # Install VS Code's deps. These are the only two it seems we need.
44RUN apt-get update && apt-get install -y \
55 libxkbfile-dev \
6- libsecret-1-dev \
7- git
6+ libsecret-1-dev
87
98# Ensure latest yarn.
109RUN npm install -g yarn@1.13
@@ -21,12 +20,13 @@ FROM ubuntu:18.10
2120WORKDIR /root/project
2221COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server
2322EXPOSE 8443
23+
2424RUN apt-get update && apt-get install -y \
2525 openssl \
2626 net-tools \
27- locales && \
28- locale-gen en_US.UTF-8 && \
29- rm -rf /var/lib/apt/lists/*
27+ git \
28+ locales
29+ RUN locale-gen en_US.UTF-8
3030# We unfortunately cannot use update-locale because docker will not use the env variables
3131# configured in /etc/default/locale so we need to set it manually.
3232ENV LANG=en_US.UTF-8
You can’t perform that action at this time.
0 commit comments