codesandbox-client / docker /Dockerfile.prod
AbdulElahGwaith's picture
Upload folder using huggingface_hub
84c1942 verified
Raw
History Blame Contribute Delete
317 Bytes
FROM node:9
LABEL maintainer "Ives van Hoorne"
COPY package.json /app/package.json
COPY yarn.lock /app/yarn.lock
WORKDIR /app
RUN yarn config set workspaces-experimental true
RUN yarn install
# After yarn install, so dev deps are also installed (for building)
ENV NODE_ENV production
ADD . /app
RUN npm run build