We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a22b9c0 commit 72a1212Copy full SHA for 72a1212
Dockerfile
@@ -23,9 +23,10 @@ COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server
23
EXPOSE 8443
24
RUN apt-get update && apt-get install -y \
25
openssl \
26
- net-tools
27
-RUN apt-get install -y locales && \
28
- locale-gen en_US.UTF-8
+ net-tools \
+ locales && \
+ locale-gen en_US.UTF-8 && \
29
+ rm -rf /var/lib/apt/lists/*
30
# We unfortunately cannot use update-locale because docker will not use the env variables
31
# configured in /etc/default/locale so we need to set it manually.
32
ENV LANG=en_US.UTF-8
0 commit comments