We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a672d7 commit 5249140Copy full SHA for 5249140
Dockerfile
@@ -25,10 +25,11 @@ RUN apt-get update && apt-get install -y \
25
openssl \
26
net-tools \
27
git \
28
- locales
+ locales \
29
+ dumb-init
30
RUN locale-gen en_US.UTF-8
31
# We unfortunately cannot use update-locale because docker will not use the env variables
32
# configured in /etc/default/locale so we need to set it manually.
33
ENV LANG=en_US.UTF-8
34
ENV LC_ALL=en_US.UTF-8
-ENTRYPOINT ["code-server"]
35
+ENTRYPOINT ["/usr/bin/dumb-init", "code-server"]
0 commit comments