Skip to content

Commit

Permalink
Add 'nano' to the Dockerfile installation list
Browse files Browse the repository at this point in the history
In the Dockerfile, 'nano' has been added to the list of installations run by '/runtime/bin/install'. This will ensure that 'nano', a popular text editor, is available in our Docker environment.
  • Loading branch information
nbejansen committed May 13, 2024
1 parent 14e5d20 commit 0b1b3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ENV RUNTIME_UID=1000 \

COPY --chmod=755 ./runtime/runtime/bin /runtime/bin

RUN /runtime/bin/install curl xz-utils ca-certificates \
RUN /runtime/bin/install curl xz-utils ca-certificates nano \
&& groupadd -r -g ${RUNTIME_GID} ${RUNTIME_GROUP} \
&& useradd --no-log-init -r -s /usr/bin/bash -m -d ${RUNTIME_HOME_DIR} -u ${RUNTIME_UID} -g ${RUNTIME_GID} ${RUNTIME_USER} \
&& chown $RUNTIME_UID:$RUNTIME_GID /run \
Expand Down

0 comments on commit 0b1b3e1

Please sign in to comment.