mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-13 01:36:22 +00:00
12 lines
224 B
Docker
12 lines
224 B
Docker
FROM node:18-alpine3.18
|
|
|
|
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 []
|