32 lines
940 B
Docker
32 lines
940 B
Docker
FROM node:12
|
|
|
|
|
|
LABEL maintainer="Fabian Stamm <dev@fabianstamm.de>"
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
# for https
|
|
RUN apt-get install -yyq ca-certificates
|
|
# install libraries
|
|
RUN apt-get install -yyq libappindicator1 libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6
|
|
# tools
|
|
RUN apt-get install -yyq gconf-service lsb-release wget xdg-utils
|
|
# and fonts
|
|
RUN apt-get install -yyq fonts-liberation
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json /usr/src/app
|
|
COPY package-lock.json /usr/src/app
|
|
COPY lib/ /usr/src/app
|
|
|
|
RUN npm install
|
|
|
|
VOLUME [ "/usr/src/app/databases", "/usr/src/app/logs" ]
|
|
|
|
EXPOSE 5000/tcp
|
|
|
|
CMD ["npm", "run", "start"] |