FROM golang:1.17.1

WORKDIR /go/task

COPY task task
COPY config.yaml /var/app/current/
COPY secrets.yaml /var/app/

CMD ["./task"]
