Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
1ma committed Nov 28, 2024
1 parent b8dec90 commit f5595a4
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
fail-fast: false
matrix:
images:
- { context: "haproxy", tags: "1maa/haproxy:3.0" }
- { context: "postgres", tags: "1maa/postgres:12-alpine", build-arg: "POSTGRES_VERSION=12.20" }
- { context: "postgres", tags: "1maa/postgres:13-alpine", build-arg: "POSTGRES_VERSION=13.16" }
- { context: "postgres", tags: "1maa/postgres:14-alpine", build-arg: "POSTGRES_VERSION=14.13" }
- { context: "postgres", tags: "1maa/postgres:15-alpine", build-arg: "POSTGRES_VERSION=15.8" }
- { context: "postgres", tags: "1maa/postgres:16-alpine", build-arg: "POSTGRES_VERSION=16.4" }
- { context: "haproxy", tags: "1maa/haproxy:3.1" }
- { context: "postgres", tags: "1maa/postgres:12-alpine", build-arg: "POSTGRES_VERSION=12.22" }
- { context: "postgres", tags: "1maa/postgres:13-alpine", build-arg: "POSTGRES_VERSION=13.18" }
- { context: "postgres", tags: "1maa/postgres:14-alpine", build-arg: "POSTGRES_VERSION=14.15" }
- { context: "postgres", tags: "1maa/postgres:15-alpine", build-arg: "POSTGRES_VERSION=15.10" }
- { context: "postgres", tags: "1maa/postgres:16-alpine", build-arg: "POSTGRES_VERSION=16.6" }
- { context: "postgres", tags: "1maa/postgres:17-alpine" }
- { context: "sftp", tags: "1maa/sftp:latest" }
steps:
Expand Down
4 changes: 2 additions & 2 deletions haproxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM alpine:3.20

ARG HAPROXY_VERSION=3.0.6
ARG HAPROXY_VERSION=3.1.0

WORKDIR /tmp

ADD https://www.haproxy.org/download/3.0/src/haproxy-${HAPROXY_VERSION}.tar.gz .
ADD https://www.haproxy.org/download/3.1/src/haproxy-${HAPROXY_VERSION}.tar.gz .

RUN apk add --no-cache \
build-base \
Expand Down
2 changes: 1 addition & 1 deletion php/8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM 1maa/alpine:latest AS build

ARG PHP_VERSION=8.1.30
ARG PHP_VERSION=8.1.31
ARG SECP256K1_NOSTR_EXT_VERSION=v0.1.3

ENV CFLAGS="-Os -march=x86-64"
Expand Down
2 changes: 1 addition & 1 deletion php/8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM 1maa/alpine:latest AS build

ARG PHP_VERSION=8.2.25
ARG PHP_VERSION=8.2.26
ARG SECP256K1_NOSTR_EXT_VERSION=v0.1.3

ENV CFLAGS="-Os -march=x86-64"
Expand Down
2 changes: 1 addition & 1 deletion php/8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM 1maa/alpine:latest AS build

ARG PHP_VERSION=8.3.13
ARG PHP_VERSION=8.3.14
ARG SECP256K1_NOSTR_EXT_VERSION=v0.1.3

ENV CFLAGS="-Os -march=x86-64"
Expand Down
2 changes: 1 addition & 1 deletion postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.20 AS builder

ARG POSTGRES_VERSION=17.0
ARG POSTGRES_VERSION=17.2

WORKDIR /tmp

Expand Down
2 changes: 1 addition & 1 deletion sqlite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM alpine:3.20
# https://www.sqlite.org/howtocompile.html
# https://www.sqlite.org/compile.html

ARG SQLITE_VERSION=3470000
ARG SQLITE_VERSION=3470100

WORKDIR /tmp

Expand Down

0 comments on commit f5595a4

Please sign in to comment.