35 lines
615 B
Docker
35 lines
615 B
Docker
FROM node:8
|
|
|
|
COPY . /source
|
|
|
|
RUN set -x \
|
|
&& curl -sL https://install.meteor.com | sed s/--progress-bar/-sL/g | /bin/sh \
|
|
&& useradd -m -G users -s /bin/bash meteor \
|
|
&& chown -R meteor:meteor /source
|
|
|
|
RUN mkdir /app \
|
|
&& chown -R meteor:meteor /app
|
|
|
|
USER meteor
|
|
|
|
RUN cd /source \
|
|
&& meteor npm install \
|
|
&& meteor build --directory /app
|
|
|
|
ENV NODE_ENV production
|
|
|
|
RUN cd /app/bundle/programs/server \
|
|
&& npm install \
|
|
&& npm cache clear --force
|
|
|
|
WORKDIR /app/bundle
|
|
|
|
ENV MONGO_URL=mongodb://mongo:27017/html5client \
|
|
PORT=3000 \
|
|
ROOT_URL=http://localhost:3000
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["node", "main.js"]
|
|
|