diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 21ff1c53..08526329 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -391,9 +391,8 @@ jobs: docker system prune -f --filter "until=24h" - echo "✅ Deployment successful. Containers are Health." + echo "✅ Deployment successful. Containers are Healthy." docker compose -p "$PROJECT_NAME" --env-file "$ENV_FILE" ps - echo "→ Applying Directus Schema Snapshot..." # Note: We check if snapshot exists first to avoid failing if no snapshot is committed yet if docker compose -p "$PROJECT_NAME" --env-file "$ENV_FILE" exec -T directus ls /directus/schema/snapshot.yaml >/dev/null 2>&1; then diff --git a/Dockerfile b/Dockerfile index be8bd5c2..8e6a669e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ ENV SKIP_RUNTIME_ENV_VALIDATION=true RUN corepack enable # Copy package files -COPY package.json pnpm-lock.yaml* .npmrc ./ +COPY package.json pnpm-lock.yaml* ./ # Install dependencies based on the preferred package manager # Create .npmrc for private registry access if token is present