Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
EPajares authored Dec 13, 2020
1 parent 67407a4 commit d318b3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ COPY --from=pgroutingBuilder /usr/share/postgresql/${PG_MAJOR}/extension\
/usr/share/postgresql/${PG_MAJOR}/extension

#Install arraymath-extension
RUN cd /tmp/ && wget https://github.com/pramsey/pgsql-arraymath/archive/master.zip && cd pgsql-arraymath && make && make install
RUN cd /tmp/ && git clone https://github.com/pramsey/pgsql-arraymath && cd pgsql-arraymath && make && make install

#Install floatvec extension
RUN cd /tmp/ && wget https://github.com/pjungwir/floatvec/archive/master.zip && cd floatvec && make && make install
RUN cd /tmp/ && git clone https://github.com/pjungwir/floatvec && cd floatvec && make && make install

# Run any additional tasks here that are too tedious to put in
# this dockerfile directly.
Expand Down

0 comments on commit d318b3b

Please sign in to comment.