Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mariadb] Docker images updates - 2023-12-15-104218 #78

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
164 changes: 0 additions & 164 deletions 10/debian11/10.11/Dockerfile

This file was deleted.

12 changes: 6 additions & 6 deletions 11/debian11/11.0/Dockerfile → 10/debian11/10.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Build gosu from the source. As by 2023-09-26 project only have releases
# from go 1.18. https://github.com/tianon/gosu/releases
FROM golang:1.20 as gosu-build
FROM golang: as gosu-build

RUN git clone https://github.com/tianon/gosu.git --branch 1.16 /go/src/github.com/tianon/gosu
RUN git clone https://github.com/tianon/gosu.git --branch 1.12 /go/src/github.com/tianon/gosu

RUN set -eux; \
apt-get update; \
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN set -eux; ls -lAFh /go/bin/gosu-*; file /go/bin/gosu-*

FROM marketplace.gcr.io/google/c2d-debian11

ENV C2D_RELEASE 11.0.3
ENV C2D_RELEASE 10.12

# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
RUN groupadd -r mysql && useradd -r -g mysql mysql
Expand Down Expand Up @@ -89,17 +89,17 @@ ENV LANG C.UTF-8


# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
ARG MARIADB_VERSION=1:11.0.3+maria~deb11
ARG MARIADB_VERSION=1:10.12+maria~deb
ENV MARIADB_VERSION $MARIADB_VERSION
# release-status:Alpha
# release-support-type:Unknown
# (https://downloads.mariadb.org/rest-api/mariadb/)

# Allowing overriding of REPOSITORY, a URL that includes suite and component for testing and Enterprise Versions
ARG REPOSITORY="http://archive.mariadb.org/mariadb-11.0.3/repo/debian/ bullseye main"
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.12/repo/debian/ main"

RUN curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup \
| bash -s -- --mariadb-server-version="mariadb-11.0" --os-type="debian" --os-version="bullseye" \
| bash -s -- --mariadb-server-version="mariadb-10.12" --os-type="debian" --os-version="" \
&& cat /etc/apt/sources.list.d/mariadb.list

RUN set -e;\
Expand Down
File renamed without changes.
Loading