forked from docker/compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove fig.packages replace with real deps.
Signed-off-by: Daniel Nephin <[email protected]>
- Loading branch information
Showing
30 changed files
with
47 additions
and
1,775 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
FROM ubuntu:14.04 | ||
RUN apt-get update -qq && apt-get install -qy python python-pip python-dev | ||
ADD requirements.txt /code/ | ||
RUN apt-get update -qq && apt-get install -qy python python-pip python-dev git | ||
RUN useradd -d /home/user -m -s /bin/bash user | ||
|
||
WORKDIR /code/ | ||
|
||
ADD requirements.txt /code/ | ||
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 python setup.py install | ||
|
||
RUN chown -R user /code/ | ||
USER user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
import logging | ||
import pprint | ||
|
||
from fig.packages import six | ||
import six | ||
|
||
|
||
def format_call(args, kwargs): | ||
|
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.