remove reference to build targets that no longer exist.

This commit is contained in:
Greyscale 2022-09-01 11:02:12 +02:00
parent a4af28cabf
commit ada9640a97
No known key found for this signature in database
GPG key ID: 74BAFF55434DA4B2
3 changed files with 2 additions and 5 deletions

View file

@ -1,5 +1,5 @@
ARG MARIADB_VERSION=10.9
FROM mariadb:$MARIADB_VERSION AS mysql
FROM mariadb:$MARIADB_VERSION
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV DEBIAN_FRONTEND="teletype" \
TERM=xterm-256color \

View file

@ -1,5 +1,5 @@
ARG PGSQL_VERSION
FROM postgres:$PGSQL_VERSION-alpine AS postgres
FROM postgres:$PGSQL_VERSION-alpine
RUN apk add --no-cache runit && \
apk --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/main add \
icu-libs \

View file

@ -26,7 +26,6 @@ services:
build:
context: .
dockerfile: Dockerfile.postgres
target: postgres
args:
PGSQL_VERSION: 14
environment:
@ -49,7 +48,6 @@ services:
image: benzine/mysql:10.9
build:
context: .
target: mysql
dockerfile: Dockerfile.mariadb
args:
MARIADB_VERSION: 10.9
@ -75,7 +73,6 @@ services:
image: benzine/mysql:10.3
build:
context: .
target: mysql
dockerfile: Dockerfile.mariadb
args:
MARIADB_VERSION: 10.3