Skip to content

Commit f5d8362

Browse files
committed
feat: add htop; chore: start publishing latest tags
1 parent f394696 commit f5d8362

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
push: true
2828
target: base
2929
build-args: IMAGE_VERSION=${{ steps.get_version.outputs.version-without-v }}
30-
tags: ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.version-without-v }}
30+
tags: ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.version-without-v }},ghcr.io/${{ github.repository }}:latest
3131

3232
- name: build'n'push - dotnet
3333
uses: docker/build-push-action@v4.0.0
@@ -36,7 +36,7 @@ jobs:
3636
push: true
3737
target: dotnet
3838
build-args: IMAGE_VERSION=${{ steps.get_version.outputs.version-without-v }}
39-
tags: ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.version-without-v }}-dotnet
39+
tags: ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.version-without-v }}-dotnet,ghcr.io/${{ github.repository }}:dotnet
4040

4141
- name: build'n'push - rust
4242
uses: docker/build-push-action@v4.0.0
@@ -45,4 +45,4 @@ jobs:
4545
push: true
4646
target: rust
4747
build-args: IMAGE_VERSION=${{ steps.get_version.outputs.version-without-v }}
48-
tags: ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.version-without-v }}-rust
48+
tags: ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.version-without-v }}-rust,ghcr.io/${{ github.repository }}:rust

src/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ RUN apt-get update && apt-get install -y \
1919
nano \
2020
bat \
2121
dnsutils \
22-
iproute2
22+
iproute2 \
23+
htop
2324

2425
RUN mkdir -m 0755 -p /etc/apt/keyrings && \
2526
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \

0 commit comments

Comments
 (0)