working build

This commit is contained in:
root
2025-02-27 23:30:12 -06:00
parent b24d7ce2f3
commit b21a77ddc8
4 changed files with 21 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
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"]