使用 Docker 容器化 React 專案

做法

新增 .env 檔:

1
APP_PORT=8080

新增 docker-compose.yaml 檔:

1
2
3
4
5
6
7
8
9
version: "3"

services:
app:
container_name: react-app
build: .
restart: always
ports:
- "${APP_PORT}:80"

新增 Dockerfile 檔:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# build stage
FROM node:lts-alpine as builder

WORKDIR /app

COPY package*.json ./

RUN npm ci

COPY . .

RUN npm run build

# final stage
FROM nginx:stable-alpine

COPY --from=builder /app/build /usr/share/nginx/html

EXPOSE 80

CMD ["nginx", "-g", "daemon off;"]

新增 .dockerignore 檔。

1
/node_modules

編譯並啟動容器:

1
docker-compose up -d --build

瀏覽網頁

前往 http://127.0.0.1:8080 瀏覽。