Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gmeans committed Feb 17, 2015
1 parent 0249223 commit 8429d2b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions trusty/0.24/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM ubuntu:trusty
MAINTAINER Ceroic <ops@ceroic.com>

RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 627220E7
RUN apt-get update && apt-get install -y apt-transport-https ca-certificates procps
RUN echo 'deb http://archive.scrapy.org/ubuntu scrapy main' | sudo tee /etc/apt/sources.list.d/scrapy.list
RUN sudo apt-get update && sudo apt-get install -y scrapy-0.24 scrapyd

# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

EXPOSE 6800
CMD ["scrapyd"]

0 comments on commit 8429d2b

Please sign in to comment.