85 lines
2.4 KiB
Docker
Executable File
85 lines
2.4 KiB
Docker
Executable File
FROM alpine:3.13.5
|
|
|
|
ENV APP_DIR=/srv/app
|
|
ENV SRC_DIR=${APP_DIR}/src
|
|
ENV GIT_URL https://github.com/kowh-ai/datapusher.git
|
|
#ENV GIT_URL https://github.com/keitaroinc/datapusher.git
|
|
ENV GIT_BRANCH master
|
|
ENV JOB_CONFIG ${APP_DIR}/datapusher_settings.py
|
|
ENV CKAN__PLUGINS image_view text_view recline_view datastore datapusher envvars
|
|
|
|
WORKDIR ${APP_DIR}
|
|
|
|
RUN apk upgrade && \
|
|
apk add --no-cache \
|
|
python3 \
|
|
curl \
|
|
gcc \
|
|
make \
|
|
g++ \
|
|
autoconf \
|
|
automake \
|
|
libtool \
|
|
git \
|
|
musl-dev \
|
|
python3-dev \
|
|
libffi-dev \
|
|
openssl-dev \
|
|
libxml2-dev \
|
|
libxslt-dev \
|
|
rust \
|
|
cargo
|
|
|
|
RUN apk add --no-cache \
|
|
uwsgi \
|
|
uwsgi-http \
|
|
uwsgi-corerouter \
|
|
uwsgi-python
|
|
|
|
# Create the src directory
|
|
RUN mkdir -p ${SRC_DIR}
|
|
|
|
# Install pip
|
|
RUN curl -o ${SRC_DIR}/get-pip.py https://bootstrap.pypa.io/get-pip.py && \
|
|
python3 ${SRC_DIR}/get-pip.py
|
|
|
|
# Install datapusher
|
|
RUN cd ${SRC_DIR} && \
|
|
git clone -b ${GIT_BRANCH} --depth=1 --single-branch ${GIT_URL} && \
|
|
cd datapusher && \
|
|
python3 setup.py install && \
|
|
pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
RUN cp ${APP_DIR}/src/datapusher/deployment/*.* ${APP_DIR} && \
|
|
# Remove default values in ini file
|
|
sed -i '/http/d' ${APP_DIR}/datapusher-uwsgi.ini && \
|
|
sed -i '/wsgi-file/d' ${APP_DIR}/datapusher-uwsgi.ini && \
|
|
sed -i '/virtualenv/d' ${APP_DIR}/datapusher-uwsgi.ini
|
|
# Remove src files
|
|
#rm -rf ${APP_DIR}/src
|
|
|
|
# Install and configure supervisor
|
|
RUN pip3 install supervisor && \
|
|
mkdir /etc/supervisord.d
|
|
|
|
# Copy all setup files
|
|
COPY setup/start_datapusher.sh ${APP_DIR}
|
|
COPY setup/datapusher-uwsgi.ini ${APP_DIR}
|
|
COPY setup/datapusher_settings.py ${APP_DIR}
|
|
COPY setup/supervisor.uwsgi.conf /etc/supervisord.d/datapusher.uwsgi.conf
|
|
COPY setup/supervisord.conf /etc/supervisord.conf
|
|
|
|
# Create a 'ckan' local user and group to run the app
|
|
RUN addgroup -g 92 -S www-data && \
|
|
adduser -u 92 -h /srv/app -H -D -S -G www-data www-data
|
|
|
|
# Set timezone
|
|
RUN echo "UTC" > /etc/timezone && \
|
|
# Change ownership to app user
|
|
chown -R www-data:www-data /srv/app
|
|
|
|
EXPOSE 8800
|
|
CMD ["/srv/app/start_datapusher.sh"]
|
|
#CMD ["sh", "-c", \
|
|
# "uwsgi --plugins=http,python --http=0.0.0.0:8800 --socket=/tmp/uwsgi.sock --ini=`echo ${APP_DIR}`/datapusher-uwsgi.ini --wsgi-file=`echo ${APP_DIR}`/datapusher.wsgi"]
|