uptime-kuma/dockerfile

11 lines
148 B
Plaintext
Raw Normal View History

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