Compare commits

...

3 Commits

Author SHA1 Message Date
dependabot[bot] f16ed6802b Bump node in the docker-dependencies group across 1 directory
Bumps the docker-dependencies group with 1 update in the / directory: node.


Updates `node` from 24.18.1-alpine to 26.8-alpine

---
updated-dependencies:
- dependency-name: node
  dependency-version: 26.8.1-alpine
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: docker-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-09-15 01:33:56 +00:00
Owen Schwartz b982639dc4 Merge pull request #3746 from fosrl/dev
Resolve oss build issue
2026-09-14 18:05:52 -04:00
Owen 56e758a656 Resolve oss build issue 2026-09-14 18:05:30 -04:00
2 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:24.18.1-alpine
FROM node:26.8-alpine
WORKDIR /app
+9 -2
View File
@@ -1,3 +1,10 @@
export function createCname(domainId: string, baseDomain: string) {}
export function createCname(
domainId: string,
baseDomain: string
): { baseDomain: string; value: string }[] {
throw new Error("Creating CNAME records is not supported in this build");
}
export function createNs() {}
export function createNs(): string[] {
throw new Error("Creating NS records is not supported in this build");
}