This commit is contained in:
+9
-4
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user