expose $STACK env to each image so it can be used in formulae

This commit is contained in:
David Zuelke
2019-02-15 03:42:33 +01:00
committed by Casey Faist
parent 97e3366409
commit 8f1b24f64e
2 changed files with 4 additions and 2 deletions
@@ -3,7 +3,8 @@ FROM heroku/cedar:14
WORKDIR /app
ENV WORKSPACE_DIR="/app/builds" \
S3_BUCKET="lang-python" \
S3_PREFIX="cedar-14/"
S3_PREFIX="cedar-14/" \
STACK="cedar-14"
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
@@ -4,7 +4,8 @@ WORKDIR /app
ENV WORKSPACE_DIR="/app/builds" \
S3_BUCKET="lang-python" \
S3_PREFIX="heroku-18/" \
DEBIAN_FRONTEND=noninteractive
DEBIAN_FRONTEND=noninteractive \
STACK="heroku-18"
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*