mirror of
https://github.com/viktoruj/obsidian-cloud-kms.git
synced 2026-07-22 06:56:21 +00:00
14 lines
203 B
Docker
14 lines
203 B
Docker
FROM node:20.20.2-alpine3.23
|
|
|
|
RUN apk add --no-cache make git bash
|
|
|
|
WORKDIR /app
|
|
|
|
# Cache dependencies layer
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
|
|
# Copy source
|
|
COPY . .
|
|
|
|
CMD ["make", "ci"]
|