dduf-check / Dockerfile
coyotte508
✨ Add Dockerfile
a89bb4b
raw
history blame
305 Bytes
# syntax=docker/dockerfile:1
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM node:22
WORKDIR /app
RUN corepack enable
COPY --link --chown=1000 . .
RUN pnpm install
RUN pnpm build
CMD ["node", "build/index.js"]