anycoder-ed280f1c / Dockerfile
samirerty's picture
Upload Dockerfile with huggingface_hub
9c062b5 verified
raw
history blame contribute delete
137 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]