Skip to content

Commit 0110dc1

Browse files
authored
Merge pull request #42 from antoniojbt/copilot/fix-36
Fix deprecated MAINTAINER instruction in Dockerfiles
2 parents f9ca1bb + f3bc030 commit 0110dc1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ FROM jfloff/alpine-python
2323
# docker pull continuumio/miniconda3
2424
# docker run -i -t continuumio/miniconda3 /bin/bash
2525

26-
#########
27-
# Contact
28-
#########
29-
MAINTAINER Antonio Berlanga-Taylor <[email protected]>
26+
#########
27+
# Contact
28+
#########
29+
LABEL maintainer="Antonio Berlanga-Taylor <[email protected]>"
3030

3131

3232
#########################

templates/project_template/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM continuumio/miniconda3
1919
#########
2020
# Contact
2121
#########
22-
MAINTAINER author_name <author_email>
22+
LABEL maintainer="author_name <author_email>"
2323

2424
#########################
2525
# Update/install packages

tests/ref_files/pq_example/code/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM continuumio/miniconda3:25.3.1-1
1919
#########
2020
# Contact
2121
#########
22-
MAINTAINER author_name <author_email>
22+
LABEL maintainer="author_name <author_email>"
2323

2424
#########################
2525
# Update/install packages

tests/ref_files/pq_test_ref/code/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM continuumio/miniconda3
1919
#########
2020
# Contact
2121
#########
22-
MAINTAINER author_name <author_email>
22+
LABEL maintainer="author_name <author_email>"
2323

2424
#########################
2525
# Update/install packages

0 commit comments

Comments
 (0)