11 lines
108 B
Docker
Executable File
11 lines
108 B
Docker
Executable File
FROM node:20.2.0-alpine3.18
|
|
|
|
WORKDIR /app
|
|
|
|
RUN yarn global add http-server
|
|
|
|
COPY . .
|
|
|
|
RUN yarn install
|
|
|
|
CMD |