mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00:00
![Andrii Chubatiuk](/assets/img/avatar_default.png)
- removed absolute paths to run without docker - set cspell to default entrypoint value - set cspell config path instead of cspell.json copying and removal
7 lines
153 B
Docker
7 lines
153 B
Docker
FROM node:lts-alpine3.20
|
|
|
|
WORKDIR /opt/node
|
|
COPY yarn.lock package.json .
|
|
RUN yarn install
|
|
WORKDIR /vm
|
|
ENTRYPOINT ["/opt/node/node_modules/.bin/cspell"]
|