Skip to content

Commit 28c9d7e

Browse files
committed
fix: Dockerfile install
1 parent a5f7190 commit 28c9d7e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
- name: Semantic Release
2525
uses: cycjimmy/semantic-release-action@v5
2626
env:
27-
GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN chown -R admin .
66
COPY --chown=admin . .
77
USER admin
88

9-
RUN bun install --production
9+
RUN bun install --production --ignore-scripts
1010

1111
ENV PORT=8080
1212
CMD [ "bun", "--filter", "app", "start" ]

renovate.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
{
2121
"customType": "regex",
2222
"managerFilePatterns": ["package.json"],
23-
"matchStrings": ["\"packageManager\":\\s*\"(?<depName>bun)@(?<currentValue>[\\d.]+)\""],
23+
"matchStrings": [
24+
"\"packageManager\":\\s*\"(?<depName>bun)@(?<currentValue>[\\d.]+)\""
25+
],
2426
"datasourceTemplate": "npm",
2527
"versioningTemplate": "semver"
2628
}

0 commit comments

Comments
 (0)