This repository has been archived by the owner on Mar 7, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Dockerfile
77 lines (72 loc) · 1.53 KB
/
Dockerfile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# We're using Alpine Edge
FROM alpine:edge
#
# We have to uncomment Community repo for some packages
#
RUN sed -e 's;^#http\(.*\)/edge/community;http\1/edge/community;g' -i /etc/apk/repositories
#
# Installing Packages
#
RUN apk add --no-cache=true --update \
coreutils \
bash \
build-base \
bzip2-dev \
curl \
figlet \
gcc \
g++ \
git \
aria2 \
util-linux \
libevent \
jpeg-dev \
libffi-dev \
libpq \
libwebp-dev \
libxml2 \
libxml2-dev \
libxslt-dev \
linux-headers \
musl \
neofetch \
openssl-dev \
postgresql \
postgresql-client \
postgresql-dev \
openssl \
pv \
jq \
wget \
python3 \
python3-dev \
readline-dev \
sqlite \
ffmpeg \
sqlite-dev \
sudo \
chromium \
chromium-chromedriver \
zlib-dev \
jpeg \
zip \
freetype-dev
RUN python3 -m ensurepip \
&& pip3 install --upgrade pip setuptools \
&& pip3 install wheel \
&& rm -r /usr/lib/python*/ensurepip && \
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi && \
if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && \
rm -r /root/.cache
#
# Clone repo and prepare working directory
#
RUN git clone -b master https://github.com/adekmaulana/ProjectBish /home/projectbish/
RUN mkdir /home/projectbish/bin/
WORKDIR /home/projectbish/
#
# Install requirements
#
RUN pip3 install -r requirements.txt
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
CMD ["python3","-m","userbot"]