-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add docker option to RPC Proxy * fix: update README.md
- Loading branch information
1 parent
4b52224
commit 3f49de6
Showing
6 changed files
with
106 additions
and
11 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
Dockerfile | ||
dist |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Use the official Node.js image as the base image | ||
FROM node:18-alpine | ||
|
||
# Set the working directory in the container | ||
WORKDIR /app | ||
|
||
# Copy the dependencies file to the working directory | ||
COPY ./ /app | ||
|
||
# Install all the dependencies | ||
RUN yarn install | ||
|
||
# Build the app | ||
RUN yarn build | ||
|
||
# Serve the app | ||
ENTRYPOINT ["yarn", "start"] |
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 |
---|---|---|
|
@@ -798,6 +798,11 @@ | |
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.4.tgz#11ef0398f9abee161193461910a507ef0d4c0c32" | ||
integrity sha512-sywLRD3UK/qRJt0oBwdpYLBibk7KiRfbswmWRDabuncQYSlf8aLEEUor/oP6KRz8KEG+HoiVLBhPRD5JWjS8Sg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.21.4" | ||
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.4.tgz#11ef0398f9abee161193461910a507ef0d4c0c32" | ||
integrity sha512-sywLRD3UK/qRJt0oBwdpYLBibk7KiRfbswmWRDabuncQYSlf8aLEEUor/oP6KRz8KEG+HoiVLBhPRD5JWjS8Sg== | ||
|
||
"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": | ||
version "4.4.0" | ||
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" | ||
|
@@ -3528,6 +3533,35 @@ esbuild@^0.21.4: | |
"@esbuild/win32-ia32" "0.21.4" | ||
"@esbuild/win32-x64" "0.21.4" | ||
|
||
esbuild@^0.21.4: | ||
version "0.21.4" | ||
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.4.tgz#ceb501def8edb12a5bfd9c55f3a96db698edf022" | ||
integrity sha512-sFMcNNrj+Q0ZDolrp5pDhH0nRPN9hLIM3fRPwgbLYJeSHHgnXSnbV3xYgSVuOeLWH9c73VwmEverVzupIv5xuA== | ||
optionalDependencies: | ||
"@esbuild/aix-ppc64" "0.21.4" | ||
"@esbuild/android-arm" "0.21.4" | ||
"@esbuild/android-arm64" "0.21.4" | ||
"@esbuild/android-x64" "0.21.4" | ||
"@esbuild/darwin-arm64" "0.21.4" | ||
"@esbuild/darwin-x64" "0.21.4" | ||
"@esbuild/freebsd-arm64" "0.21.4" | ||
"@esbuild/freebsd-x64" "0.21.4" | ||
"@esbuild/linux-arm" "0.21.4" | ||
"@esbuild/linux-arm64" "0.21.4" | ||
"@esbuild/linux-ia32" "0.21.4" | ||
"@esbuild/linux-loong64" "0.21.4" | ||
"@esbuild/linux-mips64el" "0.21.4" | ||
"@esbuild/linux-ppc64" "0.21.4" | ||
"@esbuild/linux-riscv64" "0.21.4" | ||
"@esbuild/linux-s390x" "0.21.4" | ||
"@esbuild/linux-x64" "0.21.4" | ||
"@esbuild/netbsd-x64" "0.21.4" | ||
"@esbuild/openbsd-x64" "0.21.4" | ||
"@esbuild/sunos-x64" "0.21.4" | ||
"@esbuild/win32-arm64" "0.21.4" | ||
"@esbuild/win32-ia32" "0.21.4" | ||
"@esbuild/win32-x64" "0.21.4" | ||
|
||
escalade@^3.1.1, escalade@^3.1.2: | ||
version "3.1.2" | ||
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" | ||
|
@@ -7414,6 +7448,26 @@ tsup@^8.1.0: | |
sucrase "^3.20.3" | ||
tree-kill "^1.2.2" | ||
|
||
tsup@^8.1.0: | ||
version "8.1.0" | ||
resolved "https://registry.yarnpkg.com/tsup/-/tsup-8.1.0.tgz#354ce9def1721f5029564382ea2a42dc67fbb489" | ||
integrity sha512-UFdfCAXukax+U6KzeTNO2kAARHcWxmKsnvSPXUcfA1D+kU05XDccCrkffCQpFaWDsZfV0jMyTsxU39VfCp6EOg== | ||
dependencies: | ||
bundle-require "^4.0.0" | ||
cac "^6.7.12" | ||
chokidar "^3.5.1" | ||
debug "^4.3.1" | ||
esbuild "^0.21.4" | ||
execa "^5.0.0" | ||
globby "^11.0.3" | ||
joycon "^3.0.1" | ||
postcss-load-config "^4.0.1" | ||
resolve-from "^5.0.0" | ||
rollup "^4.0.2" | ||
source-map "0.8.0-beta.0" | ||
sucrase "^3.20.3" | ||
tree-kill "^1.2.2" | ||
|
||
tty-table@^4.1.5: | ||
version "4.2.3" | ||
resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-4.2.3.tgz#e33eb4007a0a9c976c97c37fa13ba66329a5c515" | ||
|
@@ -7595,7 +7649,7 @@ typedoc@^0.25.13: | |
minimatch "^9.0.3" | ||
shiki "^0.14.7" | ||
|
||
typescript@^5.4.4: | ||
typescript@^5.4.4, typescript@^5.4.5: | ||
version "5.4.5" | ||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" | ||
integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== | ||
|