FROM ubuntu:16.04 MAINTAINER "Manojvv" "manojv@ilimi.in" RUN apt-get update && apt-get install -y git \ unzip \ zip \ build-essential \ curl RUN curl --silent --location https://deb.nodesource.com/setup_6.x | bash - \ && apt-get install --yes nodejs RUN mkdir -p /opt/content-service/ ADD . /opt/content-service/ WORKDIR /opt/content-service/services/js-services/content_service/ RUN npm install WORKDIR /opt CMD ["zip", "-r", "content-service.zip", "content-service"]