-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3381f5
commit d601951
Showing
5 changed files
with
664 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM golang:1.22.0 as watch-base | ||
FROM golang:1.23.0 as watch-base | ||
# Install Node.js | ||
RUN apt-get update && apt-get install -y curl | ||
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - | ||
RUN apt-get install -y nodejs | ||
ENV PNPM_HOME="/pnpm" | ||
ENV PATH="$PNPM_HOME:$PATH" | ||
RUN corepack enable && corepack use [email protected] | ||
RUN go install github.com/cosmtrek/air@latest | ||
RUN go install github.com/air-verse/air@latest | ||
RUN go install github.com/go-task/task/v3/cmd/task@latest | ||
|
||
FROM watch-base as watch | ||
|
@@ -25,7 +25,7 @@ FROM node:20-slim AS node-base | |
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile | ||
RUN pnpm build | ||
|
||
FROM golang:1.22.0 as be-builder | ||
FROM golang:1.23.0 as be-builder | ||
COPY . /app | ||
COPY --from=node-base /app/dist /app/dist | ||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,18 +10,19 @@ | |
"build:vite": "vite build" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.10.4", | ||
"autoprefixer": "^10.4.19", | ||
"@types/node": "^20.17.6", | ||
"autoprefixer": "^10.4.20", | ||
"fast-glob": "^3.3.2", | ||
"postcss": "^8.4.38", | ||
"tailwindcss": "^3.3.6", | ||
"typescript": "^5.3.3", | ||
"vite": "^5.0.7", | ||
"vite-plugin-static-copy": "^1.0.0" | ||
"postcss": "^8.4.47", | ||
"tailwindcss": "^3.4.14", | ||
"typescript": "^5.6.3", | ||
"vite": "^5.4.10", | ||
"vite-plugin-static-copy": "^1.0.6" | ||
}, | ||
"dependencies": { | ||
"@floating-ui/core": "^1.5.2", | ||
"@floating-ui/dom": "^1.5.3", | ||
"@floating-ui/core": "^1.6.8", | ||
"@floating-ui/dom": "^1.6.12", | ||
"htmx": "^0.0.2" | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee" | ||
} |
Oops, something went wrong.