Skip to content

Commit

Permalink
Update alpine to v3.19 (#19233)
Browse files Browse the repository at this point in the history
* Update alpine to v3.19

* Update openssh to V_9_5_P1
  • Loading branch information
aledbf authored Dec 12, 2023
1 parent 6bc27b8 commit 62ba5a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/ide/code/codehelper/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License.AGPL.txt in the project root for license information.

FROM alpine:3.16 as base_builder
FROM alpine:3.19 as base_builder
RUN mkdir /ide

FROM scratch
Expand Down
2 changes: 1 addition & 1 deletion components/supervisor/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License.AGPL.txt in the project root for license information.

FROM alpine:3.16 as docker_cli_builder
FROM alpine:3.19 as docker_cli_builder

RUN apk add wget tar

Expand Down
7 changes: 4 additions & 3 deletions components/supervisor/openssh/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

# This Dockerfile was taken from https://github.com/ep76/docker-openssh-static and adapted.
FROM alpine:3.18 AS builder
FROM alpine:3.19 AS builder

ARG openssh_url=https://github.com/openssh/openssh-portable/archive/refs/tags/V_9_3_P2.tar.gz
ARG openssh_url=https://github.com/openssh/openssh-portable/archive/refs/tags/V_9_5_P1.tar.gz

WORKDIR /build

Expand Down Expand Up @@ -52,7 +52,8 @@ RUN ./configure \
--sysconfdir=/etc/ssh \
--with-ldflags=-static \
--with-privsep-user=nobody \
--with-ssl-engine
--with-ssl-engine \
--with-pie

ENV aports=https://raw.githubusercontent.com/alpinelinux/aports/master/main/openssh
RUN curl -fsSL \
Expand Down

0 comments on commit 62ba5a8

Please sign in to comment.