mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-15 18:56:18 +00:00
12 lines
220 B
Docker
12 lines
220 B
Docker
FROM node:22-alpine
|
|
|
|
RUN apk update && apk add git curl jq && mkdir -p /opt
|
|
|
|
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 []
|