umami/Dockerfile

13 lines
159 B
Docker
Raw Normal View History

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