fixed paths and added unp
Some checks failed
build / build (push) Successful in 1m39s
build / Dockerfile lint (push) Failing after 9s

This commit is contained in:
Roger Sikorski 2023-11-12 17:32:25 +01:00
parent 7eafeef093
commit ef2fd4978d
Signed by: RogerSik
GPG Key ID: 207958C85208EAC4
7 changed files with 11 additions and 10 deletions

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: hadolint/hadolint-action@v3.1.0 - uses: hadolint/hadolint-action@v3.1.0
with: with:
dockerfile: dockerfile/alpine/Dockerfile dockerfile: dockerfile/alpine
build: build:
runs-on: k3s runs-on: k3s
@ -28,4 +28,4 @@ jobs:
cache: true cache: true
username: rogersik username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}
build_file: dockerfile/alpine/Dockerfile build_file: dockerfile/alpine

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: hadolint/hadolint-action@v3.1.0 - uses: hadolint/hadolint-action@v3.1.0
with: with:
dockerfile: dockerfile/ubuntu/Dockerfile dockerfile: dockerfile/ubuntu
build: build:
runs-on: k3s runs-on: k3s
@ -28,4 +28,4 @@ jobs:
cache: true cache: true
username: rogersik username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}
build_file: dockerfile/ubuntu/Dockerfile build_file: dockerfile/ubuntu

View File

@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: hadolint/hadolint-action@v3.1.0 - uses: hadolint/hadolint-action@v3.1.0
with: with:
dockerfile: Dockerfile/alpine/ dockerfile: dockerfile/alpine
build: build:
runs-on: k3s runs-on: k3s
@ -29,4 +29,4 @@ jobs:
cache: true cache: true
username: rogersik username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}
build_file: dockerfile/aline/Dockerfile build_file: dockerfile/alpine

View File

@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: hadolint/hadolint-action@v3.1.0 - uses: hadolint/hadolint-action@v3.1.0
with: with:
dockerfile: Dockerfile/ubuntu/ dockerfile: dockerfile/ubuntu
build: build:
runs-on: k3s runs-on: k3s
@ -29,4 +29,4 @@ jobs:
cache: true cache: true
username: rogersik username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}
build_file: dockerfile/aline/Dockerfile build_file: dockerfile/ubuntu

View File

@ -7,6 +7,7 @@ Installed tools:
- rsync - rsync
- mc - mc
- nano - nano
- unp
## Ubuntu and Alpine Images ## Ubuntu and Alpine Images

View File

@ -3,7 +3,7 @@
FROM alpine:3.18 FROM alpine:3.18
RUN apk update && \ RUN apk update && \
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client apk add --no-cache nano mc micro rsync ncdu git curl openssh-client unp
COPY ./bin/ /usr/local/bin COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"] ENTRYPOINT ["sleep", "infinity"]

View File

@ -3,7 +3,7 @@
FROM ubuntu:22.04 FROM ubuntu:22.04
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y nano mc micro rsync ncdu git curl \ && apt-get install -y nano mc micro rsync ncdu git curl unp \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY ./bin/ /usr/local/bin COPY ./bin/ /usr/local/bin