mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
10 lines
118 B
Docker
10 lines
118 B
Docker
FROM node:12.18-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN npm install && npm run build
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["npm", "start"]
|