-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathkoyeb.js
More file actions
16 lines (10 loc) Β· 530 Bytes
/
koyeb.js
File metadata and controls
16 lines (10 loc) Β· 530 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM fedora:37
RUN sudo dnf -y update &&\
sudo dnf install -y https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm &&\
sudo dnf install -y git ffmpeg ImageMagick nodejs yarnpkg libwebp &&\
sudo dnf clean all -y
RUN git clone https://github.com/KatashiFukushima/KatashiBot-MD
WORKDIR /root/KatashiBot-MD
COPY ./root/KatashiBot-MD
RUN yarn install
CMD ["node", "index.js"]