From c69f5afdbdcab86d9dc692de56fc032d0b50cb5f Mon Sep 17 00:00:00 2001 From: shay-codefresh Date: Wed, 17 Aug 2016 13:55:44 +0300 Subject: [PATCH] Create Dockerfile --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1ea69f4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM node:latest +RUN apt-get -q -y update && \ + apt-get -q -y install \ + curl \ + ssh \ + git \ + sshpass +RUN curl https://bootstrap.pypa.io/ez_setup.py -o - | python +WORKDIR /src +RUN git clone http://code.transifex.com/transifex-client.git +RUN cd transifex-client &&\ + python setup.py install