File size: 385 Bytes
94a0346
 
 
 
 
e60e77c
 
 
 
94a0346
e60e77c
 
 
 
 
94a0346
 
e60e77c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM amazonlinux:2023.2.20231011.0 as base


RUN dnf install vim git nodejs -y && npm install -g pnpm

# Switch to the "user" user
RUN useradd -m -u 1000 user
RUN mkdir -p /CleanS2S && chown -R 1000:1000 /CleanS2S
USER user

RUN git clone https://github.com/opendilab/CleanS2S.git

WORKDIR /CleanS2S/frontend_nextjs

RUN pnpm install

EXPOSE 7860
CMD ["pnpm", "dev", "--port", "7860"]