9 lines
169 B
Docker
9 lines
169 B
Docker
FROM node:18-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"]
|