uptime-kuma/Dockerfile

11 lines
149 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-12 19:50:39 +00:00
EXPOSE 50013
2021-07-11 06:20:31 +00:00
VOLUME ["/app/data"]
CMD ["npm", "run", "start-server"]