mirror of https://github.com/docker/compose.git
Add installation and entrypoint to dockerfile
This commit is contained in:
parent
ab145b5365
commit
dff9aa6f0c
|
@ -5,6 +5,8 @@ RUN pip install -r requirements.txt
|
|||
ADD requirements-dev.txt /code/
|
||||
RUN pip install -r requirements-dev.txt
|
||||
ADD . /code/
|
||||
RUN python setup.py develop
|
||||
RUN useradd -d /home/user -m -s /bin/bash user
|
||||
RUN chown -R user /code/
|
||||
USER user
|
||||
ENTRYPOINT /usr/local/bin/fig
|
||||
|
|
Loading…
Reference in New Issue