Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.0 #119

Merged
merged 4 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cloudrun/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim as builder
FROM gplane/pnpm:node20-alpine as builder
#nodeのイメージをベースにする

ENV BASE_URL=/23/tokiwa/
Expand All @@ -9,9 +9,9 @@ WORKDIR /app
COPY ./ ./
#ynu-fes...の下を/appの下にコピー

RUN yarn install
RUN pnpm install

RUN yarn build
RUN pnpm run build

FROM node:20-slim as production

Expand All @@ -31,4 +31,4 @@ ENV PORT=8080
CMD ["node" ,"./.output/server/index.mjs"]
#--containerを作成するときに実行されるコマンド

EXPOSE 8080
EXPOSE 8080
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
"lintfix": "prettier --write --list-different ."
},
"devDependencies": {
"@nuxt/devtools": "^1.0.0",
"@nuxt/devtools": "^1.0.8",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/google-fonts": "^3.0.2",
"@types/node": "^18.17.3",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nuxt": "^3.6.5",
"nuxt-gtag": "^1.1.1",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"typescript": "^5.2.2"
"@nuxtjs/google-fonts": "^3.1.3",
"@types/node": "^20.11.24",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nuxt": "^3.10.3",
"nuxt-gtag": "^2.0.4",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.0",
"swiper": "^10.3.1"
"axios": "^1.6.7",
"swiper": "^11.0.7"
}
}
Loading