fix: missing env default values
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Paolo Asperti 2022-05-25 12:27:16 +02:00
parent dcafe9347b
commit e91455f8e1
Signed by: paspo
GPG Key ID: 06D46905D19D5182
1 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ COPY run.sh /
EXPOSE 514/tcp
EXPOSE 514/udp
ENV TARGET_HOST
ENV TARGET_PROTO
ENV TARGET_PORT
ENV TARGET_HOST="127.0.0.1"
ENV TARGET_PROTO="tcp"
ENV TARGET_PORT="514"
ENTRYPOINT ["/bin/sh", "/run.sh"]