forked from sudoguy/tiktokpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.test
90 lines (80 loc) · 2.02 KB
/
Dockerfile.test
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
78
79
80
81
82
83
84
85
86
87
88
89
90
FROM python:3.9-slim-buster as development_build
ARG ENV="production"
ENV ENV=${ENV} \
DEBIAN_FRONTEND=noninteractive \
# poetry:
POETRY_VERSION='1.1.6' \
POETRY_VIRTUALENVS_CREATE=false \
POETRY_CACHE_DIR='/var/cache/pypoetry' \
# pip:
PIP_NO_CACHE_DIR=off \
PIP_DISABLE_PIP_VERSION_CHECK=on \
PIP_DEFAULT_TIMEOUT=100
# System deps
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
# build-essential \
curl \
git \
# pyppeteer
ca-certificates \
fonts-liberation \
libappindicator3-1 \
libasound2 \
libatk-bridge2.0-0 \
libatk1.0-0 \
libc6 \
libcairo2 \
libcups2 \
libdbus-1-3 \
libexpat1 \
libfontconfig1 \
libgbm1 \
libgcc1 \
libglib2.0-0 \
libgtk-3-0 \
libnspr4 \
libnss3 \
libpango-1.0-0 \
libpangocairo-1.0-0 \
libstdc++6 \
libx11-6 \
libx11-xcb1 \
libxcb1 \
libxcomposite1 \
libxcursor1 \
libxdamage1 \
libxext6 \
libxfixes3 \
libxi6 \
libxrandr2 \
libxrender1 \
libxss1 \
libxtst6 \
lsb-release \
wget \
xdg-utils \
# Cleaning cache:
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* \
# Installing `poetry` package manager:
# https://github.com/python-poetry/poetry
&& pip install "poetry==$POETRY_VERSION"
WORKDIR /app
# Copy only requirements, to cache them in docker layer
COPY ./pyproject.toml ./poetry.lock /app/
# Project initialization:
RUN echo "$ENV" \
&& poetry --version \
&& poetry install \
$(if [ "$ENV" = 'production' ]; then echo '--no-dev'; fi) \
--no-interaction --no-ansi \
# Do not install the root package (the current project)
--no-root \
# Cleaning poetry installation's cache for production:
&& if [ "$ENV" = 'production' ]; then rm -rf "$POETRY_CACHE_DIR"; fi
RUN pyppeteer-install
# Setting up proper permissions:
RUN groupadd -r web && useradd -d /app -r -g web web \
&& chown web:web -R /app
COPY . /app/
CMD ["pytest"]