Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
audiowmark
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
audiowmark
Commits
f46ad169
Commit
f46ad169
authored
Dec 05, 2018
by
Andreas Profous
Committed by
Stefan Westerfeld
Dec 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Dockerfile
parent
c5d8b937
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
1 deletion
+28
-1
Dockerfile
Dockerfile
+18
-0
Makefile.am
Makefile.am
+1
-0
README
README
+8
-0
autogen.sh
autogen.sh
+1
-1
No files found.
Dockerfile
0 → 100644
View file @
f46ad169
FROM
gcc:latest
RUN
apt-get update
&&
apt-get
install
-y
build-essential
RUN
apt-get
install
-y
libfftw3-dev
RUN
apt-get
install
-y
libsndfile1-dev
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
ADD
. /audiowmark
WORKDIR
/audiowmark
RUN
./autogen.sh
RUN
make
RUN
make
install
ENTRYPOINT
["/usr/local/bin/audiowmark"]
Makefile.am
View file @
f46ad169
SUBDIRS
=
src
ACLOCAL_AMFLAGS
=
-I
m4
README
View file @
f46ad169
...
...
@@ -20,3 +20,11 @@ or, when building from git
./bootstrap.sh --enable-shared --enable-sse --enable-float && \
make && \
sudo make install
Docker Build
You should be able to execute audiowmark via Docker.
Example that outputs the usage message:
docker build -t audiowmark .
docker run -it audiowmark -h
autogen.sh
View file @
f46ad169
...
...
@@ -34,4 +34,4 @@ fi
test
"0
$DIE
"
-gt
0
&&
exit
1
echo
"Running: autoreconf -i && ./configure
$@
"
autoreconf
-i
-Wno-portability
&&
./configure
"
$@
"
autoreconf
-
f
-
i
-Wno-portability
&&
./configure
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment