Skip to content
Snippets Groups Projects
Commit e9cdc6c6 authored by Terence Lee's avatar Terence Lee
Browse files

add a heroku-18 Dockerfile

parent 7df57122
Branches builds
No related tags found
No related merge requests found
FROM heroku/heroku:18-build
WORKDIR /app
ENV WORKSPACE_DIR="/app/builds" \
S3_BUCKET="lang-python" \
S3_PREFIX="heroku-18/"
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
COPY requirements.txt /app/
RUN pip install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt
COPY . /app/builds/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment