Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-and-push-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
tags: ${{ steps.prepare-tags.outputs.tags }}
build-args: |
NEXT_PUBLIC_VERSION=${{ steps.set-vars.outputs.short_sha }}
NEXT_PUBLIC_CLARITY_PROJECT_ID=jvv0pvzi3x
Comment thread
Elias-3817 marked this conversation as resolved.
Comment thread
Elias-3817 marked this conversation as resolved.
labels: |
org.opencontainers.image.revision=${{ steps.set-vars.outputs.short_sha }}
org.opencontainers.image.source=${{ github.repository }}
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM node:22.20-alpine
ARG NEXT_PUBLIC_VERSION
ENV NEXT_PUBLIC_VERSION=$NEXT_PUBLIC_VERSION
ARG NEXT_PUBLIC_CLARITY_PROJECT_ID
ENV NEXT_PUBLIC_CLARITY_PROJECT_ID=$NEXT_PUBLIC_CLARITY_PROJECT_ID
RUN apk add --no-cache g++ make py3-pip bash nginx
RUN adduser -D -g 'www' www
RUN mkdir -p /home/www && chown -R www:www /home/www
Expand Down
Loading