CleanS2S / Dockerfile
niuyazhe
feature(nyz): init
94a0346
raw
history blame
271 Bytes
FROM amazonlinux:2023.2.20231011.0 as base
WORKDIR /app
RUN dnf install vim git nodejs -y && npm install -g pnpm
RUN git clone https://github.com/opendilab/CleanS2S.git /app/CleanS2S
RUN cd /app/CleanS2S/frontend_nextjs && pnpm install
EXPOSE 7860
CMD sh ./start.sh