forked from datalust/seq-forwarder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to install libicu67 from deb package
- Loading branch information
1 parent
abe090b
commit d360368
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |