Spaces:
Sleeping
Sleeping
File size: 271 Bytes
94a0346 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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
|