forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.qa
48 lines (37 loc) · 1.36 KB
/
Dockerfile.qa
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
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
ARG PYTHON_VERSION
# Install add-apt-repository
RUN apt-get update
RUN apt-get install -y software-properties-common
# Add python repo
RUN add-apt-repository ppa:deadsnakes/ppa
RUN apt-get update
# Install apt-utils
RUN apt-get install -y apt-utils
# Install python development
RUN apt-get install -y python$PYTHON_VERSION-dev python3-pip
# install distutils.util
RUN if [ $PYTHON_VERSION != '3.10' ] ; then \
apt-get install -y python3-distutils python3-distutils-extra python3-apt --reinstall ; \
else \
apt-get install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ; \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 ; \
fi
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python$PYTHON_VERSION 1
# Install kerberos development
RUN apt-get install -y libkrb5-dev
# Clean
RUN apt-get clean
# Install modules
WORKDIR /atlassian-python-api
COPY requirements.txt .
COPY requirements-dev.txt .
RUN python3 -m pip install --no-cache-dir --upgrade pip
RUN python3 -m pip install --no-cache-dir -r requirements-dev.txt
ENV PYTHON_VERSION=$PYTHON_VERSION
# Select language-agnostic "C" locale.
# Unicode is necessary for some tools like "black" to work.
ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
CMD python3 -m pip install -e . && \
make qa PYTHON_VERSION=$PYTHON_VERSION