mirror of https://git.tuxpa.in/a/code-server.git
Merge pull request #1399 from SuperSandro2000/docker
Optimize release Docker Image
This commit is contained in:
commit
1f601f27a2
|
@ -1,20 +1,28 @@
|
||||||
FROM debian:10
|
FROM debian:10
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update \
|
||||||
RUN apt-get install -y curl
|
&& apt-get install -y \
|
||||||
|
curl \
|
||||||
|
dumb-init \
|
||||||
|
htop \
|
||||||
|
locales \
|
||||||
|
man \
|
||||||
|
nano \
|
||||||
|
git \
|
||||||
|
procps \
|
||||||
|
ssh \
|
||||||
|
sudo \
|
||||||
|
vim \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# https://wiki.debian.org/Locale#Manually
|
# https://wiki.debian.org/Locale#Manually
|
||||||
RUN apt-get install -y locales
|
RUN sed -i "s/# en_US.UTF-8/en_US.UTF-8/" /etc/locale.gen \
|
||||||
RUN sed -i "s/# en_US.UTF-8/en_US.UTF-8/" /etc/locale.gen
|
&& locale-gen
|
||||||
RUN locale-gen
|
|
||||||
ENV LANG=en_US.UTF-8
|
ENV LANG=en_US.UTF-8
|
||||||
|
|
||||||
RUN chsh -s /bin/bash
|
RUN chsh -s /bin/bash
|
||||||
ENV SHELL=/bin/bash
|
ENV SHELL=/bin/bash
|
||||||
|
|
||||||
RUN apt-get install -y dumb-init sudo
|
|
||||||
RUN apt-get install -y man procps vim nano htop ssh git
|
|
||||||
|
|
||||||
RUN adduser --gecos '' --disabled-password coder && \
|
RUN adduser --gecos '' --disabled-password coder && \
|
||||||
echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
|
echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
|
||||||
|
|
||||||
|
@ -24,8 +32,6 @@ RUN curl -SsL https://github.com/boxboat/fixuid/releases/download/v0.4/fixuid-0.
|
||||||
mkdir -p /etc/fixuid && \
|
mkdir -p /etc/fixuid && \
|
||||||
printf "user: coder\ngroup: coder\n" > /etc/fixuid/config.yml
|
printf "user: coder\ngroup: coder\n" > /etc/fixuid/config.yml
|
||||||
|
|
||||||
RUN rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
COPY release/code-server*.tar.gz /tmp/
|
COPY release/code-server*.tar.gz /tmp/
|
||||||
RUN cd /tmp && tar -xzf code-server*.tar.gz && rm code-server*.tar.gz && \
|
RUN cd /tmp && tar -xzf code-server*.tar.gz && rm code-server*.tar.gz && \
|
||||||
mv code-server* /usr/local/lib/code-server && \
|
mv code-server* /usr/local/lib/code-server && \
|
||||||
|
|
Loading…
Reference in New Issue