mirror of
https://github.com/chaitin/SafeLine.git
synced 2026-02-06 00:33:56 +08:00
7 lines
120 B
Docker
7 lines
120 B
Docker
FROM node:20-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm ci
|
|
RUN npm run build
|
|
CMD npm run serve -- --port 80 --host 0.0.0.0 |