Compare commits

...

3 Commits
0.8.5 ... 0.8.7

Author SHA1 Message Date
cd75440a6d remove command
Some checks failed
renovate / renovate (push) Successful in 1m7s
release-image-gitea / release (push) Failing after 14m4s
2025-06-08 20:50:39 -05:00
3354975e2e remove command
Some checks failed
renovate / renovate (push) Has been cancelled
2025-06-08 20:49:53 -05:00
1ffe933d6e change build arg
Some checks failed
renovate / renovate (push) Successful in 1m26s
release-image-gitea / release (push) Failing after 1m24s
2025-06-08 20:45:47 -05:00
3 changed files with 4 additions and 9 deletions

View File

@@ -72,8 +72,6 @@ jobs:
load: true
tags: ${{ env.TEST_TAG }}
file: ./Dockerfile
build-args: |
REGISTRY=hub.docker
- name: Test
run: |
@@ -88,8 +86,6 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./Dockerfile
build-args: |
REGISTRY=hub.docker
- name: Actions Ntfy
run: |

View File

@@ -1,7 +1,7 @@
ARG REGISTRY
ARG REGISTRY=hub.docker
FROM ${REGISTRY}/node:22.16.0-alpine3.22 AS base
LABEL version="0.8.5"
LABEL version="0.8.7"
LABEL description="Astro based personal website"
ENV PNPM_HOME="/pnpm"
@@ -21,7 +21,6 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --save form-data
FROM build-deps AS build
COPY . .
RUN pnpm run build
RUN pnpm prune --omit=dev
FROM base AS runtime
COPY --from=prod-deps /app/node_modules /app/node_modules
@@ -33,4 +32,4 @@ ENV DIRECTUS_URL=https://directus.alexlebens.dev
ENV PORT=4321
EXPOSE $PORT
CMD node ./dist/server/entry.mjs
CMD ["node", "./dist/server/entry.mjs"]

View File

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