mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
12 lines
159 B
Docker
12 lines
159 B
Docker
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"]
|