1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-18 16:31:44 +02:00

Add build arg to Heroku Dockerfile

This commit is contained in:
DarthSim 2019-06-18 20:49:26 +06:00
parent cf332e4611
commit 6ce4201bb0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,5 @@
build:
config:
IMGPROXY_TAG: latest
docker:
web: heroku/Dockerfile

View File

@ -1,2 +1,4 @@
FROM darthsim/imgproxy:latest
ARG IMGPROXY_TAG=latest
FROM darthsim/imgproxy:$IMGPROXY_TAG
LABEL maintainer="Sergey Alexandrovich <darthsim@gmail.com>"