Skip to content

Commit

Permalink
chore: Add text editor to base-os ubuntu image (#403)
Browse files Browse the repository at this point in the history
* Add editors to base docker image

* Only one editor is needed, lightest
  • Loading branch information
UlisesLuzius authored Feb 15, 2023
1 parent da0b38f commit ee4f985
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions commons/base-os/Dockerfile.amd64
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y --no-install-recommends nano && rm -rf /var/lib/apt/lists/*;

2 changes: 2 additions & 0 deletions commons/base-os/Dockerfile.arm64
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y --no-install-recommends nano && rm -rf /var/lib/apt/lists/*;

2 changes: 2 additions & 0 deletions commons/base-os/Dockerfile.riscv64
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
FROM riscv64/ubuntu:22.04
RUN apt-get update && apt-get install -y --no-install-recommends nano && rm -rf /var/lib/apt/lists/*;


0 comments on commit ee4f985

Please sign in to comment.