mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01: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"]
|