An error occurred while loading the file. Please try again.
-
manojrpms authoredc2d05917
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 content-service /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"]