mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-26 12:41:04 -05:00
9 lines
89 B
Docker
9 lines
89 B
Docker
FROM node:lts-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
|
|
CMD ["node", "convert.js"] |