grim/wasdead

Update the docker file for the new package name
draft
2019-06-06, Gary Kramlich
33313c30ac36
Parents e07a18af6d24
Children 19450730e319
Update the docker file for the new package name
  • +4 -4
    Dockerfile
  • --- a/Dockerfile Thu Jun 06 00:16:23 2019 -0500
    +++ b/Dockerfile Thu Jun 06 00:17:32 2019 -0500
    @@ -6,15 +6,15 @@
    apt-get clean && \
    rm -rf /var/lib/apt/lists
    -COPY . /nowdead
    +COPY . /wasdead
    -WORKDIR /nowdead
    +WORKDIR /wasdead
    RUN CGO_ENABLED=0 go build -ldflags '-w -extldflags "-static"'
    FROM scratch
    COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
    -COPY --from=build /nowdead/nowdead /nowdead
    +COPY --from=build /wasdead/wasdead /wasdead
    -CMD ["/nowdead", "run"]
    +CMD ["/wasdead", "run"]