Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • prosper/docker-baseimage-ubuntu
1 result
Show changes
Commits on Source (3)
## [1.1.0](https://git.griefed.de/prosper/docker-baseimage-ubuntu/compare/1.0.0...1.1.0) (2021-06-23)
### 🚀 Features
* Install nano, net-tools, tar, unzip and vi ([4822796](https://git.griefed.de/prosper/docker-baseimage-ubuntu/commit/4822796ee90408797a0a1e508b0d84f79ab2bd2d))
### 🛠 Fixes
* Spelling mistake ([11ac3cf](https://git.griefed.de/prosper/docker-baseimage-ubuntu/commit/11ac3cfa6f515a6355e875e4630b3d14a18bb717))
## [1.0.0](https://git.griefed.de/prosper/docker-baseimage-ubuntu/compare/...1.0.0) (2021-06-23) ## [1.0.0](https://git.griefed.de/prosper/docker-baseimage-ubuntu/compare/...1.0.0) (2021-06-23)
......
...@@ -107,8 +107,12 @@ RUN \ ...@@ -107,8 +107,12 @@ RUN \
apt-get install -y \ apt-get install -y \
curl \ curl \
gnupg \ gnupg \
patch \ nano \
tzdata && \ net-tools \
tar \
tzdata \
unzip \
vim && \
echo "**** Generate locale ****" && \ echo "**** Generate locale ****" && \
locale-gen en_US.UTF-8 && \ locale-gen en_US.UTF-8 && \
echo "**** Create grfd user and make our folders ****" && \ echo "**** Create grfd user and make our folders ****" && \
...@@ -124,7 +128,6 @@ RUN \ ...@@ -124,7 +128,6 @@ RUN \
alias ll="LC_COLLATE=C ls -ahl --group-directories-first --color=auto" && \ alias ll="LC_COLLATE=C ls -ahl --group-directories-first --color=auto" && \
alias ..="cd .." && \ alias ..="cd .." && \
echo "**** Cleanup ****" && \ echo "**** Cleanup ****" && \
apt-get remove -y patch && \
apt-get autoremove -y && \ apt-get autoremove -y && \
apt-get autoclean -y && \ apt-get autoclean -y && \
apt-get clean && \ apt-get clean && \
......