Tag: mongoose docker dockerfile

在docker集装箱里安装mongoose

我正在试图dockerize我的node.js应用程序。 我创build了一个Dockerfile,下面是Dockerfile的内容 # Official node base image FROM node:0.12 # Bundle app source COPY . /src RUN apt-get update && apt-get install -y –no-install-recommends libkrb5-dev supervisor \ && cd /src \ && npm install \ && rm -rf /var/lib/apt/lists/* # copy the supervisor conf file COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf # Exclude npm cache from the image […]