Skip to content
Snippets Groups Projects
Commit 9482692c authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

update dockerfile

parent 6b3010b8
No related branches found
No related tags found
1 merge request!3Release
Pipeline #12517 failed
FROM python:3.10 FROM python:3.10
RUN mkdir /app RUN mkdir /app
WORKDIR /app
RUN curl -fsSL https://deb.nodesource.com/setup_19.x | bash - RUN curl -fsSL https://deb.nodesource.com/setup_19.x | bash -
RUN apt-get install nodejs && rm -rf /var/lib/apt/lists/* RUN apt-get install autoconf automake libtool pkg-config nodejs git
RUN rm -rf /var/lib/apt/lists/*
RUN mkdir /temp
RUN mkdir /temp/libpostal-build
WORKDIR /temp
RUN git clone https://github.com/openvenues/libpostal
RUN cd libpostal
RUN ./bootstrap.sh
RUN ./configure --datadir=/temp/libpostal-build
RUN make -j4
RUN make install
RUN ldconfig
WORKDIR /app
COPY . . COPY . .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment