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
Samuel Philipp 2771288401
Some checks failed
continuous-integration/woodpecker the build failed
fixed Dockerfile
2021-10-28 18:32:08 +02:00

12 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"]