* deploy on node 20 * use appropriate npm versions for each node version
9 lines
169 B
Docker
9 lines
169 B
Docker
FROM node:20-bullseye
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y jq
|
|
RUN apt-get install -y uuid-runtime
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|