mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
Add basic Dockerfile
Because.
This commit is contained in:
parent
5d9a5a0c84
commit
b20190da98
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
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/
|
Loading…
x
Reference in New Issue
Block a user