Compare commits

...

10 Commits
0.8.4 ... 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
90318aad14 change build arg
Some checks failed
renovate / renovate (push) Successful in 1m15s
release-image-gitea / release (push) Failing after 1m19s
2025-06-08 20:39:46 -05:00
e454a510c6 change
All checks were successful
renovate / renovate (push) Successful in 1m4s
2025-06-08 20:35:06 -05:00
a6d3ec5052 change
All checks were successful
renovate / renovate (push) Successful in 1m8s
2025-06-08 20:33:24 -05:00
1d134d43da remove oci
All checks were successful
renovate / renovate (push) Successful in 1m11s
2025-06-08 20:30:25 -05:00
54c7c9e259 remove oci
All checks were successful
renovate / renovate (push) Successful in 1m9s
2025-06-08 20:26:29 -05:00
0d8cf28be4 modify daemon
All checks were successful
renovate / renovate (push) Successful in 1m16s
2025-06-08 20:24:03 -05:00
d78a8d8c45 use different registry
All checks were successful
renovate / renovate (push) Successful in 1m7s
2025-06-08 20:19:32 -05:00
3 changed files with 8 additions and 10 deletions

View File

@@ -41,6 +41,9 @@ jobs:
driver-opts: |
namespace=gitea
qemu.install=true
buildkitd-config-inline: |
[registry."hub.docker"]
mirrors = ["harbor.alexlebens.net/proxy-hub.docker/"]
- name: Available Platforms
run: echo ${{ steps.buildx.outputs.platforms }}
@@ -69,8 +72,6 @@ jobs:
load: true
tags: ${{ env.TEST_TAG }}
file: ./Dockerfile
build-args: |
REGISTRY=harbor.alexlebens.net/v2/proxy-registry-1.docker.io/
- name: Test
run: |
@@ -85,8 +86,6 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./Dockerfile
build-args: |
REGISTRY=harbor.alexlebens.net/v2/proxy-registry-1.docker.io/
- name: Actions Ntfy
run: |

View File

@@ -1,7 +1,7 @@
ARG REGISTRY
FROM ${REGISTRY}node:22.16.0-alpine3.22 AS base
ARG REGISTRY=hub.docker
FROM ${REGISTRY}/node:22.16.0-alpine3.22 AS base
LABEL version="0.8.4"
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 npm prune --production
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.4",
"version": "0.8.7",
"private": true,
"scripts": {
"dev": "astro dev",