2019-06-12 03:56:21 +08:00
|
|
|
FROM node:12.4.0-alpine
|
2018-06-11 03:06:52 +08:00
|
|
|
|
|
|
|
# Create app directory
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
2018-11-30 13:41:45 +08:00
|
|
|
# Copy both package.json and package-lock.json
|
2018-06-11 03:06:52 +08:00
|
|
|
# where available (npm@5+)
|
2018-11-30 13:41:45 +08:00
|
|
|
COPY package.json package-lock.json ./
|
2018-06-11 03:06:52 +08:00
|
|
|
|
2018-11-30 13:41:45 +08:00
|
|
|
# Install app dependencies
|
|
|
|
RUN set -x \
|
|
|
|
&& apk add --no-cache --virtual .build-dependencies \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
g++ \
|
|
|
|
gcc \
|
|
|
|
libtool \
|
|
|
|
make \
|
|
|
|
nasm \
|
2019-01-08 05:21:23 +08:00
|
|
|
libpng-dev \
|
2019-06-21 07:41:48 +08:00
|
|
|
python \
|
2018-11-30 13:41:45 +08:00
|
|
|
&& npm install --production \
|
|
|
|
&& apk del .build-dependencies
|
2018-06-11 03:06:52 +08:00
|
|
|
|
|
|
|
# Bundle app source
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
EXPOSE 8080
|
2018-11-30 13:41:45 +08:00
|
|
|
CMD [ "node", "./src/www" ]
|