8 lines
91 B
Docker
Raw Normal View History

FROM imbios/bun-node
COPY package.json .
COPY bun.lock .
RUN bun install
CMD ["/bin/sh"]