Renovate Bot
4cba2381a0
All checks were successful
continuous-integration/woodpecker the build was successful
11 lines
277 B
Docker
11 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"]
|