Browse Source

fix generation of Docker images (#1293)

pull/1301/head
aler9 2 years ago
parent
commit
99855e0909
  1. 2
      .dockerignore
  2. 1
      scripts/binaries.mk

2
.dockerignore

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
# do not add .git, since it is needed to extract the tag
# do not add /binaries, since they're needed by make dockerhub
/tmp
/binaries
/coverage*.txt
/apidocs/*.html

1
scripts/binaries.mk

@ -22,6 +22,7 @@ COPY . ./ @@ -22,6 +22,7 @@ COPY . ./
ENV VERSION $(shell git describe --tags)
ENV CGO_ENABLED 0
RUN rm -rf binaries
RUN mkdir tmp binaries
RUN cp rtsp-simple-server.yml LICENSE tmp/

Loading…
Cancel
Save