-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
52 lines (40 loc) · 1.83 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
# Friendly Telegram (telegram userbot)
# Copyright (C) 2018-2019 The Authors
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
FROM python:3.8-slim-buster as main
ENV PIP_NO_CACHE_DIR=1
COPY requirements.txt /app/requirements.txt
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libcairo2 \
git \
neofetch \
&& rm -rf /var/lib/apt/lists /var/cache/apt/archives /tmp \
&& pip install --no-warn-script-location --no-cache-dir -r /app/requirements.txt cryptg \
# The next line is used to ensure that /data exists. It won't exist if we are running in a CI job.
&& mkdir -p /data
COPY angry-telegram/ /app/angry-telegram
COPY web-resources/ /app/web-resources
WORKDIR /app
RUN [ "python", "-Om", "angry-telegram", "--no-web", "--no-auth", "--docker-deps-internal", "--data-root", "/data" ]
STOPSIGNAL SIGINT
COPY healthcheck.py /app/healthcheck.py
HEALTHCHECK CMD [ "python", "-O", "/app/healthcheck.py" ]
ENV PORT=8080
EXPOSE $PORT
ENTRYPOINT [ "python", "-Om", "angry-telegram", "--data-root", "/data" ]
FROM main as test
COPY test-requirements.txt .
RUN pip install --no-warn-script-location -r test-requirements.txt
COPY tox.ini .
COPY test.sh .
ENTRYPOINT [ "bash", "test.sh" ]