This commit is contained in:
commit
50223a8c4d
13
.drone.yml
Normal file
13
.drone.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: opustags
|
||||
image: plugins/docker
|
||||
settings:
|
||||
registry: r.sbruder.de
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
from_secret: docker_password
|
||||
repo: r.sbruder.de/opustags
|
23
Dockerfile
Normal file
23
Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
|||
FROM alpine as builder
|
||||
|
||||
RUN apk add --no-cache \
|
||||
build-base \
|
||||
cmake \
|
||||
git \
|
||||
libogg-dev \
|
||||
pkgconf
|
||||
|
||||
RUN git clone --depth=1 https://github.com/fmang/opustags \
|
||||
&& cd opustags \
|
||||
&& sed -i -e 's/target_link_libraries(\(.*\))/target_link_libraries(\1 -static)/g' CMakeLists.txt \
|
||||
&& mkdir build \
|
||||
&& cd build \
|
||||
&& cmake .. \
|
||||
&& make -j 4 \
|
||||
&& strip opustags
|
||||
|
||||
FROM scratch
|
||||
|
||||
COPY --from=builder /opustags/build/opustags /opustags
|
||||
|
||||
ENTRYPOINT ["/opustags"]
|
Reference in a new issue