Docker container for TapChat
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

Dockerfile 290B

12345678910111213141516171819
  1. FROM node:0.10
  2. MAINTAINER Chris Smith <chris87@gmail.com>
  3. RUN npm install -g --unsafe-perm \
  4. coffee-script@1.7.1 \
  5. tapchat@0.0.42
  6. RUN \
  7. apt-get update && \
  8. apt-get -y install \
  9. expect
  10. ADD tapchat.expect tapchat.sh /
  11. EXPOSE 8067
  12. VOLUME /.tapchat
  13. CMD ["sh", "/tapchat.sh"]