feat: build
Docker Build & Publish / build-and-push (push) Failing after 1m24s
Docker Build & Publish / Prune old image versions (push) Has been skipped

This commit is contained in:
Senko-san
2026-06-07 21:11:50 +03:00
parent ceee9b9d12
commit a2fa425853
3 changed files with 93 additions and 7 deletions
+1 -6
View File
@@ -4,14 +4,9 @@
# shadows the container install. Build context = mcma-webui/.
FROM node:22-slim
# `modern-sk` is a git dependency (git+https://...) — npm needs git to fetch it.
RUN apt-get update \
&& apt-get install -y --no-install-recommends git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json package-lock.json modern-sk-*.tgz ./
COPY package.json package-lock.json ./
RUN npm ci
COPY . .