Skip to content

Commit f2c93f5

Browse files
author
Calvin Choi
authored
Merge pull request #112 from manesioz/master
fix(minor): remove deprecated MAINTAINER arg from Dockerfiles
2 parents f6c2e66 + 4afb63b commit f2c93f5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

worker_images/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.7-alpine
22

3-
MAINTAINER Eric Kin Ho Lee
3+
LABEL maintainer="Eric Kin Ho Lee"
44

55
RUN apk --update add --no-cache g++ make
66

worker_images/tensorflow-gpu/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM tensorflow/tensorflow:1.13.2-gpu-py3-jupyter
22

3-
MAINTAINER Eric Kin Ho Lee version: 0.1
3+
LABEL maintainer="Eric Kin Ho Lee" \
4+
version="0.1"
45

56
COPY ./foundations_gpu_requirements.txt /tmp/foundations_gpu_requirements.txt
67
COPY ./run.sh /prejob/run.sh

worker_images/tensorflow/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM tensorflow/tensorflow:1.13.2-py3-jupyter
22

3-
MAINTAINER Eric Kin Ho Lee version: 0.1
3+
LABEL maintainer="Eric Kin Ho Lee" \
4+
version="0.1"
45

56
COPY ./foundations_gpu_requirements.txt /tmp/foundations_gpu_requirements.txt
67
COPY ./run.sh /prejob/run.sh

0 commit comments

Comments
 (0)