mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
11 lines
207 B
Docker
11 lines
207 B
Docker
FROM heroku/heroku:16-build
|
|
|
|
WORKDIR /app
|
|
ENV WORKSPACE_DIR=/app/builds
|
|
|
|
RUN apt-get update && apt-get install -y python-pip
|
|
|
|
# Install bob-builder application
|
|
RUN pip install bob-builder==0.0.5
|
|
|
|
COPY . /app |