FROM node:11-alpine LABEL maintainer="Ocean Protocol " RUN apk add --no-cache --update\ bash\ g++\ gcc\ git\ gettext\ make\ python COPY . /app/admin WORKDIR /app/admin RUN npm install -g npm serve RUN npm install RUN npm run build # Default ENV values ENV LISTEN_ADDRESS='0.0.0.0' ENV LISTEN_PORT='3000' ENTRYPOINT ["/app/admin/scripts/docker-entrypoint.sh"]