Commit de0561a4 authored by Robert Butora's avatar Robert Butora
Browse files

docker/ingestion: installs also vlkb program

parent d598662e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ COPY deps/ast_9.2.9-1_amd64.deb /tmp/
RUN apt -y update \
 && apt -y install sudo procps psmisc \
				curl wget vim make build-essential checkinstall tree htop unzip \
            libcfitsio-dev libpqxx-dev libcsv-dev \
            libcfitsio-dev libpqxx-dev libcsv-dev libdavix0v5 \
 && dpkg -i /tmp/ast_9.2.9-1_amd64.deb \
 && echo "/usr/local/lib" > /etc/ld.so.conf.d/ast.conf && ldconfig \
 && apt -y install openssh-server postgresql-client
@@ -42,8 +42,8 @@ EXPOSE 22
# vlkb-obscore*.deb installs to /usr/local
ENV INST_DIR=/usr/local
ARG VLKB_VERSION
COPY vlkb-obscore-${VLKB_VERSION}.deb ./
RUN dpkg -i vlkb-obscore-${VLKB_VERSION}.deb
COPY vlkb-obscore-${VLKB_VERSION}.deb vlkb-${VLKB_VERSION}.deb ./
RUN dpkg -i vlkb-obscore-${VLKB_VERSION}.deb vlkb-${VLKB_VERSION}.deb

COPY start-ingestion.sh /root
RUN chmod +x /root/start-ingestion.sh