You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made a Dockerfile to make images whenever master is updated:
FROM golang:alpine as builder
RUN apk add --update make git
# bust the cache when master is updated:ADD https://api.github.com/repos/mikkeloscar/pdb-controller/git/refs/heads/master /version.json
RUN git clone https://github.com/mikkeloscar/pdb-controller.git /pdb-controller
WORKDIR /pdb-controller
ENV GO111MODULE=on
RUN make
FROM alpine
COPY --from=builder /version.json /pdb-controller/build/pdb-controller /
CMD ["/pdb-controller"]
Let me know when I can stop doing this and just pull :latest, :stable or something!
The text was updated successfully, but these errors were encountered:
I noticed the docker image tagged
:latest
was not the latest on docker hub:https://hub.docker.com/r/mikkeloscar/pdb-controller/tags
Is
1
the current recommended docker image?I made a Dockerfile to make images whenever master is updated:
Let me know when I can stop doing this and just pull
:latest
,:stable
or something!The text was updated successfully, but these errors were encountered: