uptime-kuma/dockerfile

11 lines
148 B
Text
Raw Normal View History

FROM node:16.4.2-alpine3.14
#
2021-07-11 06:20:31 +00:00
WORKDIR /app
COPY . .
RUN yarn
RUN yarn build
#
2021-07-11 06:20:31 +00:00
EXPOSE 3001
VOLUME ["/app/data"]
CMD ["npm", "run", "start-server"]