Skip to content

Commit

Permalink
Update to install libicu67 from deb package
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardomlc117 authored Dec 16, 2024
1 parent abe090b commit d360368
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
FROM debian:latest

RUN apt update
RUN apt install liblmdb-dev libicu-dev libicu67 -y
RUN apt install liblmdb-dev -y

RUN wget http://ftp.de.debian.org/debian/pool/main/i/icu/libicu67_67.1-7_amd64.deb
RUN apt install libicu67_67.1-7_amd64.deb -y
RUN rm libicu67_67.1-7_amd64.deb

COPY ./seqfwd-2.1.128-linux-x64.tar.gz /seqfwd.tar.gz
COPY ./docker-entrypoint.sh ./docker-entrypoint.sh
RUN tar -xvzf /seqfwd.tar.gz

WORKDIR /seqfwd-2.1.128-linux-x64
RUN ./seqfwd config -k api.listenUri --value="http://0.0.0.0:80"

CMD /docker-entrypoint.sh

0 comments on commit d360368

Please sign in to comment.