mirror of
https://github.com/docker/compose.git
synced 2026-06-24 18:18:27 +00:00
9 lines
256 B
Docker
9 lines
256 B
Docker
FROM stackbrew/ubuntu:12.04
|
|
RUN apt-get update -qq
|
|
RUN apt-get install -y python python-pip
|
|
ADD requirements.txt /code/
|
|
WORKDIR /code/
|
|
RUN pip install -r requirements.txt
|
|
ADD requirements-dev.txt /code/
|
|
RUN pip install -r requirements-dev.txt
|
|
ADD . /code/
|