You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
434 B

11 years ago
11 years ago
11 years ago
  1. #
  2. FROM muccg/python-base:debian8-2.7
  3. MAINTAINER ccg <ccgdevops@googlegroups.com>
  4. RUN pip install \
  5. "devpi-client>=2.0.4,<2.1" \
  6. "devpi-server>=2.1.3,<2.2" \
  7. "requests>=2.5.0,<2.6"
  8. EXPOSE 3141
  9. VOLUME /data
  10. COPY docker-entrypoint.sh /docker-entrypoint.sh
  11. RUN chmod +x /docker-entrypoint.sh
  12. # Drop privileges, set home for ccg-user
  13. USER ccg-user
  14. ENV HOME /data
  15. WORKDIR /data
  16. ENTRYPOINT ["/docker-entrypoint.sh"]
  17. CMD ["devpi"]