About-me / Dockerfile
OpceanAI's picture
Update Dockerfile
5e890ef verified
raw
history blame contribute delete
239 Bytes
FROM node:24-bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y bash git && rm -rf /var/lib/apt/lists/*
RUN npm install -g serve
COPY . .
RUN npm install
RUN npm run build
ENV PORT=7860
EXPOSE 7860
CMD ["sh", "start.sh"]