teracyhq / docker-files

Teracy docker-files project to build common Docker images
https://hub.docker.com/r/teracy/
MIT License
92 stars 55 forks source link

should use IMAGE_TAG argument for flexible FROM base image #39

Closed hoatle closed 7 years ago

hoatle commented 7 years ago

for example:

FROM python:2.7

to:

ARG IMAGE_TAG=2.7
FROM python:$IMAGE_TAG

Should apply for all the current and future docker files