webhook / Dockerfile
julien-c's picture
julien-c HF Staff
Create Dockerfile
649bcca verified
raw
history blame
204 Bytes
# 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:19
COPY . .
RUN npm i
CMD ["npx", "ts-node", "server.ts"]