8 lines
78 B
Docker
8 lines
78 B
Docker
FROM node:19-bullseye-slim
|
|
|
|
WORKDIR /src
|
|
|
|
COPY src/package*.json ./
|
|
|
|
COPY . .
|