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
Renovate Bot 4cba2381a0
All checks were successful
continuous-integration/woodpecker the build was successful
Update alpine Docker tag to v3.14.3
2021-11-13 05:02:36 +00:00

12 lines
277 B
Docker

FROM alpine:3.14.3@sha256:635f0aa53d99017b38d1a0aa5b2082f7812b03e3cdb299103fe77b5c8a07f1d2
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"]