18 lines
456 B
Docker
18 lines
456 B
Docker
|
FROM node:22.12.0-alpine
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
# パッケージファイルをコピーしてインストール
|
||
|
COPY package*.json ./
|
||
|
RUN npm install --production
|
||
|
|
||
|
# ソースコードをコピーしてビルド
|
||
|
COPY . .
|
||
|
RUN npm run build
|
||
|
|
||
|
COPY wait-for-it.sh /wait-for-it.sh
|
||
|
RUN chmod +x /wait-for-it.sh
|
||
|
|
||
|
# シェルスクリプトを使って、MySQL サーバーの起動を待機
|
||
|
CMD ["/bin/sh", "/wait-for-it.sh", "db", "3306", "--", "npm", "run", "start"]
|