2021-10-15 07:22:14 +00:00
|
|
|
FROM python:3.8
|
2020-05-10 09:48:17 +00:00
|
|
|
|
2021-10-15 07:22:14 +00:00
|
|
|
RUN apt-get update && apt-get install -y git curl libcurl4-openssl-dev build-essential vim libssl-dev python-pip
|
2020-05-10 09:48:17 +00:00
|
|
|
|
2021-10-14 12:46:56 +00:00
|
|
|
RUN pip2 install cqlsh
|
|
|
|
|
2021-01-20 12:54:02 +00:00
|
|
|
RUN addgroup appgroup && \
|
|
|
|
adduser appuser && adduser appuser appgroup
|
2020-05-10 09:48:17 +00:00
|
|
|
|
2021-10-14 12:46:56 +00:00
|
|
|
RUN mkdir /app /src
|
2021-10-15 07:22:14 +00:00
|
|
|
ADD requirements.txt /src/
|
2021-10-14 12:46:56 +00:00
|
|
|
RUN CASS_DRIVER_BUILD_CONCURRENCY=4 pip install -r /src/requirements.txt
|
2021-10-15 07:22:14 +00:00
|
|
|
WORKDIR /src
|
|
|
|
ADD . /src
|
|
|
|
RUN python /src/setup.py install
|
2020-05-11 14:43:39 +00:00
|
|
|
WORKDIR /app
|