umami/Dockerfile

11 lines
152 B
Docker
Raw Normal View History

2020-08-20 19:23:45 +02:00
FROM node:12.18-alpine
COPY . /app
WORKDIR /app
RUN npm install \
&& npm run build-mysql-client \
&& npm run build
EXPOSE 3000
CMD ["npm", "start"]