Skip to content

Commit

Permalink
rollback gosu version
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Tuscher committed Apr 1, 2023
1 parent 8265043 commit 2d0da8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/toolbox/latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ RUN apk add --no-cache \
&& "/baselayout/usr/local/bin/go-replace" --version \
&& ln -s /baselayout/usr/local/bin/go-replace /usr/local/bin/ \
# Install gosu
&& wget -O "/baselayout/sbin/gosu" "https://github.com/tianon/gosu/releases/download/1.16/gosu-amd64" \
&& wget -O "/tmp/gosu.asc" "https://github.com/tianon/gosu/releases/download/1.16/gosu-amd64.asc" \
&& wget -O "/baselayout/sbin/gosu" "https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64" \
&& wget -O "/tmp/gosu.asc" "https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64.asc" \
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
&& gpg --batch --verify /tmp/gosu.asc "/baselayout/sbin/gosu" \
Expand Down
2 changes: 1 addition & 1 deletion template/Dockerfile/tools.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
&& "{{ path }}/go-replace" --version
{%- endmacro %}

{% macro gosu(path="/sbin", arch="amd64", version="1.16") -%}
{% macro gosu(path="/sbin", arch="amd64", version="1.10") -%}
# Install gosu
&& wget -O "{{ path }}/gosu" "https://github.com/tianon/gosu/releases/download/{{ version }}/gosu-{{ arch }}" \
&& wget -O "/tmp/gosu.asc" "https://github.com/tianon/gosu/releases/download/{{ version }}/gosu-{{ arch }}.asc" \
Expand Down

0 comments on commit 2d0da8c

Please sign in to comment.