mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-05 04:53:02 +00:00
14 lines
241 B
Docker
14 lines
241 B
Docker
FROM node:22-alpine
|
|
|
|
RUN apk update && apk add git curl jq && mkdir -p /opt
|
|
|
|
RUN corepack enable
|
|
|
|
COPY --chown=root:root wait-for.sh /opt/wait-for
|
|
|
|
RUN chmod +x /opt/wait-for && ln -s /opt/wait-for /usr/local/bin/wait-for
|
|
|
|
USER node
|
|
|
|
CMD []
|