fixes
Publish / build_and_publish_docker_image (push) Successful in 2m12s

This commit is contained in:
2025-05-21 17:19:32 -05:00
parent 010d8553f1
commit 2f0c5eb028
3 changed files with 71 additions and 4 deletions
+9 -4
View File
@@ -16,8 +16,12 @@ RUN apt update -y \
tini \
zip \
unzip \
nodejs
gnupg
##nodejs \
##npm
RUN curl -fsSL https://deb.nodesource.com/setup_23.x | bash - && \
apt install -y nodejs
## Setup user and working directory
RUN useradd -m -d /home/container -s /bin/bash container
@@ -25,12 +29,13 @@ USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
RUN git clone https://github.com/ThePansmith/Monifactory.git
RUN node ~/Monifactory/tools/build server-build
RUN cp ~/Monifactory/dist/server/* ~
RUN cd ~/Monifactory/tools/build && npm install
##RUN node ~/Monifactory/tools/build build-server
##RUN cp ~/Monifactory/dist/server/* ~
STOPSIGNAL SIGINT
COPY --chown=container:container ./../entrypoint.sh /entrypoint.sh
COPY --chown=container:container ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
CMD ["/entrypoint.sh"]