ui / Dockerfile
purrbits's picture
Update Dockerfile
b650529 verified
raw
history blame
170 Bytes
FROM node:20
WORKDIR /app
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
COPY start.sh .
RUN chmod +x start.sh
EXPOSE 7860
CMD ["./start.sh"]