Skip to content

Commit

Permalink
add mariadb 10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
D3st0ny committed Dec 6, 2023
1 parent 8446c73 commit 17006ae
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
fail-fast: false
matrix:
tag:
- '10.3'
- '10.7'
- '10.8'
- '10.9'
Expand Down
19 changes: 19 additions & 0 deletions mariadb/10.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM --platform=$TARGETOS/$TARGETARCH mariadb:10.3.18

LABEL author="D3st0ny" maintainer="[email protected]"

LABEL org.opencontainers.image.source="https://github.com/D3st0ny/yolks"
LABEL org.opencontainers.image.licenses=MIT

ENV DEBIAN_FRONTEND noninteractive

RUN apt update -y \
&& apt install -y netcat \
&& useradd -d /home/container -m container -s /bin/bash

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ../entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]

0 comments on commit 17006ae

Please sign in to comment.