Files
semver-generator/Dockerfile.goreleaser
T

8 lines
235 B
Docker

FROM ubuntu:jammy
ARG TARGETPLATFORM
COPY ${TARGETPLATFORM}/semver-gen /go/src/app/semver-gen
COPY config-release.yaml /go/src/app/config.yaml
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]