12 lines
204 B
Plaintext
12 lines
204 B
Plaintext
|
from node:latest AS build
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY package.json /
|
||
|
COPY package-lock.json /
|
||
|
RUN npm install
|
||
|
COPY . ./
|
||
|
|
||
|
RUN npm run build
|
||
|
|
||
|
FROM nginx:alpine-slim
|
||
|
COPY --from=build /app/build /usr/share/nginx/html
|