Commit 9fe2cf5d authored by Andreas Profous's avatar Andreas Profous

Add libgcrypt to Dockerfile

parent 3ddc62ff
.git
.gitignore
Dockerfile
.dockerignore
.idea
......@@ -7,6 +7,7 @@ RUN apt-get install -y automake
RUN apt-get install -y autoconf
RUN apt-get install -y libtool
RUN apt-get install -y autoconf-archive
RUN apt-get install -y libgcrypt20-dev
ADD . /audiowmark
WORKDIR /audiowmark
......@@ -15,4 +16,7 @@ RUN ./autogen.sh
RUN make
RUN make install
VOLUME ["/data"]
WORKDIR /data
ENTRYPOINT ["/usr/local/bin/audiowmark"]
......@@ -27,4 +27,4 @@ You should be able to execute audiowmark via Docker.
Example that outputs the usage message:
docker build -t audiowmark .
docker run -it audiowmark -h
docker run -v <local-data-directory>:/data -it audiowmark -h
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment