Skip to content
Snippets Groups Projects
Commit 01440919 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
FROM node:alpine
RUN apk add --no-cache git && \
git clone https://github.com/mikecao/umami.git /umami && \
cd umami && \
npm install
ADD src/docker-entrypoint.sh /
WORKDIR /umami
ENTRYPOINT ["/docker-entrypoint.sh"]
#!/bin/sh
npm run build
exec npm start
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment