anycoder-082a4774 / Dockerfile
davidepollicino's picture
Upload Dockerfile with huggingface_hub
40a5f40 verified
raw
history blame contribute delete
130 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]