[fix] capitalization
This commit is contained in:
parent
ddc2c5c8df
commit
d5c6d5aa2c
1 changed files with 23 additions and 23 deletions
|
@ -1,24 +1,24 @@
|
||||||
FROM alpine:latest as build
|
FROM alpine:latest as build
|
||||||
|
|
||||||
LABEL org.label-schema.build-date=$BUILD_DATE \
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
||||||
org.label-schema.name="wsdd" \
|
org.label-schema.name="wsdd" \
|
||||||
org.label-schema.description=" Web Service Discovery host daemon (wsdd) in a docker container " \
|
org.label-schema.description=" Web Service Discovery host daemon (wsdd) in a docker container " \
|
||||||
org.label-schema.url="https://guillaumedsde.gitlab.io/docker-wsdd/" \
|
org.label-schema.url="https://guillaumedsde.gitlab.io/docker-wsdd/" \
|
||||||
org.label-schema.vcs-ref="$VCS_REF" \
|
org.label-schema.vcs-ref="$VCS_REF" \
|
||||||
org.label-schema.version="$VERSION" \
|
org.label-schema.version="$VERSION" \
|
||||||
org.label-schema.vcs-url="https://github.com/guillaumedsde/docker-wsdd" \
|
org.label-schema.vcs-url="https://github.com/guillaumedsde/docker-wsdd" \
|
||||||
org.label-schema.vendor="guillaumedsde" \
|
org.label-schema.vendor="guillaumedsde" \
|
||||||
org.label-schema.schema-version="1.0"
|
org.label-schema.schema-version="1.0"
|
||||||
|
|
||||||
ARG VERSION=master
|
ARG VERSION=master
|
||||||
|
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
RUN wget "https://raw.githubusercontent.com/christgau/wsdd/${VERSION}/src/wsdd.py" -O /wsdd \
|
RUN wget "https://raw.githubusercontent.com/christgau/wsdd/${VERSION}/src/wsdd.py" -O /wsdd \
|
||||||
&& chmod 755 /wsdd
|
&& chmod 755 /wsdd
|
||||||
|
|
||||||
FROM gcr.io/distroless/python3
|
FROM gcr.io/distroless/python3
|
||||||
|
|
||||||
COPY --from=build /wsdd /usr/bin/wsdd
|
COPY --from=build /wsdd /usr/bin/wsdd
|
||||||
|
|
||||||
ENTRYPOINT [ "python", "/usr/bin/wsdd" ]
|
ENTRYPOINT [ "python", "/usr/bin/wsdd" ]
|
Loading…
Add table
Reference in a new issue