Skip to content

Commit

Permalink
Docker setup: add vim to images
Browse files Browse the repository at this point in the history
Add vim to Docker images. Useful for troubleshooting and testing.
  • Loading branch information
stsnel committed Jul 10, 2024
1 parent 29c2998 commit 2fd1d5d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/images/davrods/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apt-get update

# Install common tools
# hadolint ignore=DL3033
RUN apt-get install -y wget
RUN apt-get install -y wget vim

# Install Python 3
# hadolint ignore=DL3033
Expand Down
2 changes: 1 addition & 1 deletion docker/images/yoda_eus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apt-get update

# Install common tools (PostgreSQL is needed for psql commands in init script)
# hadolint ignore=DL3033
RUN apt-get install -y wget git netcat gnupg
RUN apt-get install -y wget git netcat gnupg vim

# Install PostgreSQL 15 for checks whether database container is up, as well as troubleshooting
# hadolint ignore=DL3033
Expand Down
2 changes: 1 addition & 1 deletion docker/images/yoda_irods_icat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN apt-get update

# Install common tools
# hadolint ignore=DL3033
RUN apt-get install -y wget git sudo netcat gcc
RUN apt-get install -y wget git sudo netcat gcc vim

# Install Python 2.7
RUN apt-get install -y python2 python2-dev && \
Expand Down
2 changes: 1 addition & 1 deletion docker/images/yoda_portal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update

# Install common tools
# hadolint ignore=DL3033
RUN apt-get install -y wget git
RUN apt-get install -y wget git vim

# Install Python 3
# hadolint ignore=DL3033
Expand Down
2 changes: 1 addition & 1 deletion docker/images/yoda_public/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update

# Install common tools
# hadolint ignore=DL3033
RUN apt-get install -y wget git netcat sudo
RUN apt-get install -y wget git netcat sudo vim

# Install Python 3
# hadolint ignore=DL3033
Expand Down
2 changes: 1 addition & 1 deletion docker/images/yoda_web_mock/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update

# Install common tools (PostgreSQL is needed for psql commands in init script)
# hadolint ignore=DL3033
RUN apt-get install -y wget git netcat gnupg
RUN apt-get install -y wget git netcat gnupg vim

# Install Python 3
# hadolint ignore=DL3033
Expand Down

0 comments on commit 2fd1d5d

Please sign in to comment.