Skip to content

Commit 3c92fd9

Browse files
committed
feat: Add Docker support with Dockerfile and update compose configuration
1 parent 5c8d1f8 commit 3c92fd9

File tree

5 files changed

+497
-537
lines changed

5 files changed

+497
-537
lines changed

.dockerignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
**/node_modules/
22
**/dist
33

4-
.env
5-
.env.development
6-
74
.git
85
.gitignore
96
*.md
7+
8+
Dockerfile*

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM imbios/bun-node AS base
2+
WORKDIR /usr/src/app
3+
4+
COPY . .
5+
RUN bun install
6+
RUN bun run build
7+
8+
USER bun
9+
ENTRYPOINT [ "bun", "run", "start" ]

apps/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@nuxt/image": "1.8.1",
1717
"@nuxtjs/color-mode": "3.5.2",
1818
"@nuxtjs/google-fonts": "3.2.0",
19-
"@nuxtjs/i18n": "9.0.0-rc.2",
19+
"@nuxtjs/i18n": "9.3.2",
2020
"@nuxtjs/mdc": "^0.11.1",
2121
"@nuxtjs/robots": "^5.0.0",
2222
"@nuxtjs/sitemap": "^7.0.0",

0 commit comments

Comments
 (0)