DigitalLawyer / Dockerfile
vijayksagi's picture
Upload Dockerfile
cde7fcf verified
raw
history blame
388 Bytes
FROM node:18
# Set working directory inside container
WORKDIR /app
# Clone the repository
RUN git clone https://github.com/vijaysagi12/myinzackBot.git .
ENV DISABLE_ESLINT_PLUGIN=true
ENV ESLINT_NO_CACHE=true
# Install dependencies
RUN npm install && npm run build
# Expose the React app's default port
EXPOSE 7860
# Start the React server
CMD ["npm", "start"]