diff options
author | Ryo Nakamura <upa@haeena.net> | 2024-04-12 22:52:32 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2024-04-12 22:52:32 +0900 |
commit | bf7e2c3ae340464d4de7b4ba105decdbd7c40450 (patch) | |
tree | b740b03ab81df3d51336ff9c420e325d20c6d4d0 | |
parent | f2f0dab51583dafc6b6f38db7635b6376783c25c (diff) |
add vi in ubuntu-24.04 container for easy debugging
-rw-r--r-- | Dockerfile/ubuntu-24.04.Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile/ubuntu-24.04.Dockerfile b/Dockerfile/ubuntu-24.04.Dockerfile index 419afb0..9420ffd 100644 --- a/Dockerfile/ubuntu-24.04.Dockerfile +++ b/Dockerfile/ubuntu-24.04.Dockerfile @@ -4,7 +4,7 @@ ARG REQUIREDPKGS ARG DEBIAN_FRONTEND=noninteractive RUN set -ex && apt-get update && apt-get install -y --no-install-recommends \ - ${REQUIREDPKGS} ca-certificates openssh-server \ + ${REQUIREDPKGS} ca-certificates openssh-server vim-tiny \ python3 python3-pip python3-dev python3-pytest |