Skip to content

Commit

Permalink
Install some basics (including git) in richy.Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicparga committed Dec 1, 2024
1 parent 670b1ce commit 3e2357b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/richy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ WORKDIR /app/${MY_APP}

# Create user
USER root
RUN apt-get update &&\
apt-get install --yes --no-install-suggests --no-install-recommends \
# basics
ca-certificates \
git \
less \
openssh-client \
vim \
\
&&\
apt-get clean
RUN useradd --system --create-home --shell /bin/bash ${USERNAME}
#
# [Optional] Add sudo support. Omit if you don't need to install software after connecting.
Expand Down

0 comments on commit 3e2357b

Please sign in to comment.