9 lines
304 B
Docker
9 lines
304 B
Docker
FROM debian:bullseye-slim
|
|
#
|
|
COPY init.sh /
|
|
RUN chmod +x /init.sh
|
|
RUN mkdir /app
|
|
RUN apt update && apt-get install -y curl && curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh && /bin/bash nodesource_setup.sh && apt update && apt-get install -y nodejs
|
|
RUN apt clean
|
|
CMD ["/init.sh"]
|