This repository has been archived on 2023-12-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
universal-statuspage/Dockerfile
samuel-p 2771288401
Some checks failed
continuous-integration/woodpecker the build failed
fixed Dockerfile
2021-10-28 18:32:08 +02:00

11 lines
205 B
Docker

FROM alpine:3.14.2
RUN apk --no-cache add nodejs="14.18.1-r0"
COPY dist/universal-statuspage /universal-statuspage
WORKDIR /app
EXPOSE 4000
ENTRYPOINT ["node", "/universal-statuspage/server/main.js"]