File size: 395 Bytes
8c30d6b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM node:lts-buster

RUN apt-get update && \
apt-get install -y \
git \
ffmpeg \
imagemagick \
webp && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*

WORKDIR /app

RUN git clone https://diki6969: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@github.com/diki6969/ikyybot-rpg.git

WORKDIR /app/ikyybot-rpg

RUN npm install --force

EXPOSE 7860

RUN chmod -R 777 /app

CMD ["npm", "run", "self"]