mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
12 lines
177 B
Docker
12 lines
177 B
Docker
FROM node:12.18-alpine
|
|
|
|
ENV DATABASE_URL "postgresql://umami:umami@db:5432/umami"
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN npm install && npm run build
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["npm", "start"]
|