trilium/Dockerfile

29 lines
558 B
Docker
Raw Normal View History

2019-03-30 05:08:04 +08:00
FROM node:10.15.3-alpine
2018-06-11 03:06:52 +08:00
# Create app directory
WORKDIR /usr/src/app
# Copy both package.json and package-lock.json
2018-06-11 03:06:52 +08:00
# where available (npm@5+)
COPY package.json package-lock.json ./
2018-06-11 03:06:52 +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 \
&& npm install --production \
&& apk del .build-dependencies
2018-06-11 03:06:52 +08:00
# Bundle app source
COPY . .
EXPOSE 8080
CMD [ "node", "./src/www" ]