inference-api / Dockerfile
enzostvs's picture
enzostvs HF Staff
build command
8a0c38c
raw
history blame
156 Bytes
FROM node:16-alpine
RUN npm install -g pnpm
WORKDIR /app
RUN npm install --frozen-lockfile
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", "build"]