File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
FROM node:8.15.0
2
2
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.
4
4
RUN apt-get update && apt-get install -y \
5
5
libxkbfile-dev \
6
- libsecret-1-dev \
7
- git
6
+ libsecret-1-dev
8
7
9
8
# Ensure latest yarn.
10
9
RUN npm install -g
[email protected]
@@ -21,12 +20,13 @@ FROM ubuntu:18.10
21
20
WORKDIR /root/project
22
21
COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server
23
22
EXPOSE 8443
23
+
24
24
RUN apt-get update && apt-get install -y \
25
25
openssl \
26
26
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
30
30
# We unfortunately cannot use update-locale because docker will not use the env variables
31
31
# configured in /etc/default/locale so we need to set it manually.
32
32
ENV LANG=en_US.UTF-8
You can’t perform that action at this time.
0 commit comments