Skip to content

Commit

Permalink
Merge pull request #95 from NUTFes/fix/i2/94-update-Next
Browse files Browse the repository at this point in the history
Nextのアップデート 13.4.4→14.2.3
  • Loading branch information
nose221834 authored Aug 7, 2024
2 parents 58f7070 + 2ddf60b commit 0b9f26d
Show file tree
Hide file tree
Showing 5 changed files with 238 additions and 226 deletions.
2 changes: 1 addition & 1 deletion .docker/frontend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ベースイメージの作成
FROM node:18.16.0
FROM node:18.17.0

ARG CRYPT_NAME="git-crypt"
ARG CRYPT_PATH="/bin/git-crypt"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/auto-prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3 # node.js 16を使用
- uses: actions/setup-node@v3 # node.js 18.17.0を使用
with:
node-version: 16
node-version: 18.17.0
cache: npm
cache-dependency-path: frontend/package-lock.json

Expand Down
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.7"
services:
db: # postgres
image: postgres:12
Expand Down Expand Up @@ -38,7 +37,8 @@ services:
context: .docker
dockerfile: api.Dockerfile
container_name: "account_api"
ports: ["12340:12340"]
ports:
- "12340:12340"
volumes: [./api:/hasura]
env_file: [./settings/dev/api.env]
depends_on:
Expand All @@ -52,7 +52,8 @@ services:
context: .docker
dockerfile: frontend.Dockerfile
container_name: account_front
ports: [12345:12345]
ports:
- "12345:12345"
command: sh -c "npm install && npm run dev"
volumes: [.:/repo]
env_file: [./settings/dev/front.env]
Expand Down
Loading

0 comments on commit 0b9f26d

Please sign in to comment.