Skip to content

Commit

Permalink
fix all
Browse files Browse the repository at this point in the history
  • Loading branch information
EgoMaw committed Jan 28, 2024
1 parent 4ffc524 commit 518daef
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion java/amazoncorretto/11-forge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion java/amazoncorretto/11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion java/amazoncorretto/16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion java/amazoncorretto/17/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion java/amazoncorretto/20/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion java/amazoncorretto/21/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion java/amazoncorretto/8-forge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion java/amazoncorretto/8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum check-update || true \

## install tini
RUN tini_link=$(curl -s https://api.github.com/repos/krallin/tini/releases/latest | jq -r '.assets | map(select(.name == "tini")) | .[] | .browser_download_url') \
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link"
&& curl -sSLO --create-dirs --output-dir /usr/local/bin "$tini_link" && chmod +x /usr/local/bin/tini

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion nodejs/14/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL author="Michael Parker" maintainer="[email protected]"

RUN apt update \
&& apt-get --no-install-recommends -y install ffmpeg iproute2 git sqlite3 libsqlite3-dev python3 python3-dev ca-certificates dnsutils tzdata zip tar curl build-essential libtool iputils-ping gettext-base \
&& useradd -m -d /home/container container && corepack enable && corepack install -g --all
&& useradd -m -d /home/container container && corepack enable && corepack prepare pnpm@latest npm@latest yarn@stable --activate

USER container
ENV USER=container HOME=/home/container
Expand Down
2 changes: 1 addition & 1 deletion nodejs/19/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ LABEL author="EgoMaw" maintainer="[email protected]"

RUN apt-get update \
&& apt-get -y --no-install-recommends install gettext-base ffmpeg iproute2 git sqlite3 libsqlite3-dev python3 python3-dev ca-certificates dnsutils tzdata zip tar curl build-essential libtool \
&& useradd -m -d /home/container container && corepack enable && corepack install -g --all
&& useradd -m -d /home/container container && corepack enable && corepack prepare pnpm@latest npm@latest yarn@stable --activate

USER container
ENV USER=container HOME=/home/container
Expand Down

0 comments on commit 518daef

Please sign in to comment.