trilium/Dockerfile

29 lines
557 B
Docker
Raw Normal View History

2019-05-28 01:12:34 +08:00
FROM node:12.3.0-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" ]