Skip to content

Commit

Permalink
frontend-developmentのimageをnode:20にした
Browse files Browse the repository at this point in the history
  • Loading branch information
hotate29 committed Oct 2, 2024
1 parent 15c2d84 commit 45b72d5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,15 @@ services:
command: /bin/sh -c "cargo watch -s 'cargo run --bin run_server'"

frontend-development:
image: node:16
image: node:20
ports:
- "3000:3000"
environment:
# Node 17でOpenSSLがデフォルトでMD4ハッシュを提供しなくなり、
# これに依存していたwebpackに依存するreact-scripts 4.x系でのビルドができなくなってしまった。
# --openssl-legacy-providerをオプションとして渡すことで、Node 17以降でもビルドができる。
# react-scripts 4.x系から移行したら、このオプションは不要になる。
NODE_OPTIONS: --openssl-legacy-provider
volumes:
- ./:/app
- node_modules:/app/atcoder-problems-frontend/node_modules
Expand Down

0 comments on commit 45b72d5

Please sign in to comment.