change command
Some checks failed
renovate / renovate (push) Successful in 5m33s
release-image-gitea / release (push) Failing after 11m33s

This commit is contained in:
2025-06-08 21:54:10 -05:00
parent 633e374a17
commit 05eb8a092c
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
ARG REGISTRY=hub.docker ARG REGISTRY=hub.docker
FROM ${REGISTRY}/node:22.16.0-alpine3.22 AS base FROM ${REGISTRY}/node:22.16.0-alpine3.22 AS base
LABEL version="0.8.7" LABEL version="0.8.8"
LABEL description="Astro based personal website" LABEL description="Astro based personal website"
ENV PNPM_HOME="/pnpm" ENV PNPM_HOME="/pnpm"
@@ -13,10 +13,10 @@ WORKDIR /app
COPY package.json pnpm-lock.yaml ./ COPY package.json pnpm-lock.yaml ./
FROM base AS prod-deps FROM base AS prod-deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --save form-data RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod
FROM prod-deps AS build-deps FROM prod-deps AS build-deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --save form-data RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install
FROM build-deps AS build FROM build-deps AS build
COPY . . COPY . .

View File

@@ -1,7 +1,7 @@
{ {
"name": "site-profile", "name": "site-profile",
"type": "module", "type": "module",
"version": "0.8.7", "version": "0.8.8",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "astro dev", "dev": "astro dev",