forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.qa
34 lines (26 loc) · 944 Bytes
/
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
FROM ubuntu:20.04
ARG PYTHON_VERSION
# Install add-apt-repository
RUN apt-get update
RUN apt-get install -y software-properties-common
# Install python development
RUN add-apt-repository ppa:deadsnakes/ppa
RUN apt-get update
RUN apt-get install -y python$PYTHON_VERSION-dev python3-pip
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