5 lines
65 B
Docker
5 lines
65 B
Docker
|
FROM node:21-bookworm AS build
|
||
|
|
||
|
RUN node -v
|
||
|
WORKDIR /app
|
||
|
COPY . .
|