mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
13 lines
159 B
Docker
13 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"]
|