diff options
| author | Matthieu Pignolet <matthieu@puffer.fish> | 2025-10-30 07:27:17 +0100 |
|---|---|---|
| committer | Matthieu Pignolet <matthieu@puffer.fish> | 2025-10-30 07:27:17 +0100 |
| commit | 62168a880d21f676cc1bdbd0ba4a768a33b680b0 (patch) | |
| tree | a4b0c947958670925670d3f31167b38214ce4be8 | |
| parent | b60bf8d5cac4bc2a5703d2c219dc39cc123d19b2 (diff) | |
feat: add apt-get command
| -rw-r--r-- | Containerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Containerfile b/Containerfile index b7aaf9c..6f64687 100644 --- a/Containerfile +++ b/Containerfile @@ -1,3 +1,6 @@ FROM debian -RUN echo "test!"
\ No newline at end of file +RUN echo "test!" + +RUN apt-get update & \ + apt-get install -y htop |
