Skip to content

Commit 6ce4201

Browse files
committed
Add build arg to Heroku Dockerfile
1 parent cf332e4 commit 6ce4201

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

heroku.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
build:
2+
config:
3+
IMGPROXY_TAG: latest
24
docker:
35
web: heroku/Dockerfile

heroku/Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
FROM darthsim/imgproxy:latest
1+
ARG IMGPROXY_TAG=latest
2+
3+
FROM darthsim/imgproxy:$IMGPROXY_TAG
24
LABEL maintainer="Sergey Alexandrovich <darthsim@gmail.com>"

0 commit comments

Comments
 (0)