-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerfile
105 lines (84 loc) · 2.96 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
FROM ubuntu:18.04
LABEL maintainer="[email protected]"
####################################################################
# Install Linux Dependencies
####################################################################
# Install some basic utilities
RUN apt-get update && apt-get install -y \
ca-certificates \
sudo \
git \
bzip2 \
libx11-6 \
build-essential \
vim \
chromium-browser \
curl \
libssl-dev \
git \
mercurial \
pepperflashplugin-nonfree \
libffi-dev \
wget \
&& rm -rf /var/lib/apt/lists/*
####################################################################
####################################################################
# Install Python
####################################################################
# Create a working directory
WORKDIR /app/
# Create a non-root user and switch to it
RUN adduser --disabled-password --gecos '' --shell /bin/bash user \
&& chown -R user:user /app
RUN echo "user ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/90-user
USER user
# All users can use /home/user as their home directory
ENV HOME=/home/user
RUN chmod 777 /home/user
# Install Miniconda and Python 3.8
ENV CONDA_AUTO_UPDATE_CONDA=false
ENV PATH=/home/user/miniconda/bin:$PATH
RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py38_4.8.2-Linux-x86_64.sh \
&& chmod +x ~/miniconda.sh \
&& ~/miniconda.sh -b -p ~/miniconda \
&& rm ~/miniconda.sh \
&& conda install -y python==3.8.1 \
&& conda clean -ya
####################################################################
####################################################################
# Install Poetry
####################################################################
USER root
ENV PATH=/usr/local/bin:$PATH \
PYTHONUNBUFFERED=TRUE \
PYTHONDONTWRITEBYTECODE=TRUE \
WORKSPACE_TMP="/app/reports" \
POETRY_VERSION=1.1.11
# hadolint ignore=DL3008
RUN apt-get update && apt-get install -y --no-install-recommends \
&& pip install --no-cache-dir "poetry==$POETRY_VERSION" \
&& rm -r /var/lib/apt/lists/* \
&& mkdir -p /app
COPY ./setup.py /app/setup.py
COPY ./poetry.lock /app/poetry.lock
COPY ./pyproject.toml /app/pyproject.toml
ARG ENVIRON="production"
# # hadolint ignore=SC2046
RUN poetry config virtualenvs.create false \
&& poetry install \
$(if [ "$ENVIRON" = 'production' ]; then echo '--no-dev'; fi) \
--no-interaction --no-ansi
# Installing Pytest and pytest cov
RUN pip install pytest
RUN pip install pytest-cov
####################################################################
####################################################################
# Final Configs
####################################################################
#Exposing Ports
EXPOSE 8080
EXPOSE 6006
# Entrypoint
ENTRYPOINT ["/bin/bash"]
CMD []
####################################################################