mirror of
https://github.com/chaitin/SafeLine.git
synced 2026-02-01 14:23:25 +08:00
8 lines
123 B
Docker
8 lines
123 B
Docker
FROM node:20.5-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm ci
|
|
RUN npm run build
|
|
CMD npm run serve -- --port 80 --host 0.0.0.0
|