Skip to content

Commit

Permalink
add theme
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jul 18, 2018
1 parent 7d875c2 commit 325d8a9
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions mc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,23 @@ RUN apk add --no-cache \
libssh2 \
ncurses-libs

ENV TERM xterm

# Create user and change ownership
RUN addgroup -g 1001 -S mc \
&& adduser -u 1001 -SHG mc mc \
&& mkdir -p /home/mc/.mc

ENV MC_VERSION 4.8.21

RUN set -x \
&& apk add --no-cache --virtual .build-deps \
aspell-dev \
autoconf \
automake \
build-base \
aspell-dev \
ca-certificates \
curl \
e2fsprogs-dev \
gettext-dev \
git \
Expand Down Expand Up @@ -47,7 +56,15 @@ RUN set -x \
&& make \
&& make install \
) \
&& curl -sSL "https://raw.githubusercontent.com/nkulikov/mc-solarized-skin/master/solarized.ini" > /home/mc/.mc/solarized.ini \
&& rm -rf /usr/src/mc \
&& apk del .build-deps
&& apk del .build-deps \
&& chown -R mc:mc /home/mc

ENV HOME=/home/mc

ENV MC_SKIN=${HOME}/.mc/solarized.ini

WORKDIR ${HOME}

ENTRYPOINT [ "mc" ]

0 comments on commit 325d8a9

Please sign in to comment.