Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
13 lines
172 B
Docker
13 lines
172 B
Docker
FROM node:22-slim
|
|
|
|
WORKDIR /usr/src
|
|
|
|
COPY . .
|
|
|
|
RUN yarn \
|
|
&& rm -rf /usr/local/share/.cache/yarn
|
|
|
|
EXPOSE 5173
|
|
|
|
CMD ["yarn", "dev", "--host", "0.0.0.0", "--strictPort"]
|