-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (23 loc) · 769 Bytes
/
Copy pathDockerfile
File metadata and controls
33 lines (23 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM alpine:edge
RUN mkdir -p /app
WORKDIR /app
COPY . .
RUN apk add --update --no-cache --update-cache \
bash python3 nodejs npm \
curl wget git \
nano rclone \
zip unzip p7zip \
gcc libc-dev g++ python3-dev make
RUN apk add --no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community \
py3-pip yarn
RUN npm install -g localtunnel
RUN pip3 install --no-cache-dir -r requirements.txt
# Install TGrclonebot
RUN git clone https://github.com/Frozen12/TelegramShellBot-Rclone.git && \
cd TelegramShellBot-Rclone && \
yarn install
# Alpine image dependencies are below
# bash gcc libc-dev g++ python3-dev make ( python3 module : pycryptodomex )
EXPOSE 5245
CMD ["bash", "start.sh"]