This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
universal-statuspage/Dockerfile

12 lines
277 B
Text
Raw Normal View History

FROM alpine:3.14.2@sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a
2021-01-25 23:04:41 +01:00
2021-10-28 17:05:49 +02:00
RUN apk --no-cache add nodejs="14.18.1-r0"
2020-05-06 17:54:32 +02:00
COPY dist/universal-statuspage /universal-statuspage
2020-05-06 17:54:32 +02:00
WORKDIR /app
2020-05-06 19:02:54 +02:00
EXPOSE 4000
ENTRYPOINT ["node", "/universal-statuspage/server/main.js"]