9 lines
70 B
Docker
9 lines
70 B
Docker
FROM node:20-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN yarn
|
|
|
|
CMD yarn dev
|