From 34c6f3b14d854329b33b24db056a48c3adc52e23 Mon Sep 17 00:00:00 2001 From: Noxcis Date: Thu, 10 Oct 2024 02:19:16 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 38c9904..4156659 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Stage 1: Build Stage +# builder: Builder For Darkwore FROM --platform=$BUILDPLATFORM node:current-alpine AS builder @@ -16,7 +16,7 @@ RUN npm install -g yarn@latest --force \ && yarn cache clean \ && yarn autoclean --force -# Stage 2: Production Stage +# final: Final Darkwire Image FROM alpine:latest WORKDIR /opt/app @@ -37,4 +37,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 CMD \ CMD ["/opt/app/start.sh", "start" ] -STOPSIGNAL SIGTERM \ No newline at end of file +STOPSIGNAL SIGTERM