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
| Sending build context to Docker daemon 98.3 kB | |
| Sending build context to Docker daemon | |
| Step 0 : FROM ubuntu:14.04 | |
| ---> 2d24f826cb16 | |
| Step 1 : MAINTAINER likang | |
| ---> Using cache | |
| ---> 20b513cdff4a | |
| Step 2 : RUN apt-get update | |
| ---> Using cache | |
| ---> 0b7c32020c8d |
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
| sudo docker build -t scrapy . |
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 ubuntu:14.04 | |
| MAINTAINER likang | |
| #instalando python e scrapy | |
| RUN apt-get update | |
| RUN apt-get install -y python python-pip python-dev libxml2-dev libxslt-dev libffi-dev libssl-dev | |
| RUN pip install lxml && pip install pyopenssl && pip install Scrapy && pip install service_identity | |
| #instalando o git | |
| RUN apt-get install -y git |
NewerOlder