Last active
August 29, 2015 14:25
-
-
Save thekashifmalik/b9bca420e2ef9bc7a364 to your computer and use it in GitHub Desktop.
WIP dockerfile
This file contains hidden or 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
FROM disqus/nginx:python2.7-light | |
RUN mkdir -p /usr/src | |
WORKDIR /usr/src | |
# build python env | |
COPY requirements/dev.txt /usr/src/requirements/numpy.txt | |
RUN pip install --no-cache-dir -r requirements/numpy.txt | |
COPY requirements/global.txt /usr/src/requirements/global.txt | |
COPY requirements/dev.txt /usr/src/requirements/dev.txt | |
RUN pip install --no-cache-dir -r requirements/global.txt | |
RUN pip install --no-cache-dir -r requirements/dev.txt | |
COPY . /usr/src | |
EXPOSE 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment