Skip to content

Commit 2c616fd

Browse files
authored
mysql-8.0/Dockerfile: Remove MAINTAINER (#85)
Removed as deprecated. ``` 1 warning found: - MaintainerDeprecated: Maintainer instruction is deprecated in favor of using label (line 2) The MAINTAINER instruction is deprecated, use a label instead to define an image author More info: https://docs.docker.com/go/dockerfile/rule/maintainer-deprecated/ Dockerfile:2 -------------------- 1 | FROM mysql:8.0.30-debian 2 | >>> MAINTAINER groonga 3 | 4 | ENV groonga_version=12.0.6 \ -------------------- ``` We added `--debug` option to docker image build for more information.
1 parent 084a175 commit 2c616fd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

mysql-8.0/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
FROM mysql:8.0.30-debian
2-
MAINTAINER groonga
32

43
ENV groonga_version=12.0.6 \
54
mroonga_version=12.06

test/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ container_name="name_${image_name}"
1919
eval $(grep -E -o '[a-z]+_version=[0-9.]+' ../$context/Dockerfile)
2020
mysql_version=$(head -n1 ../$context/Dockerfile | grep -E -o '[0-9.]+')
2121

22-
sudo docker build -t $image_name ../$context
22+
sudo docker --debug build -t $image_name ../$context
2323
sudo docker run \
2424
-d \
2525
-p 33061:3306 \

0 commit comments

Comments
 (0)