mirror of
https://github.com/lukaszraczylo/semver-generator.git
synced 2026-06-05 22:49:25 +00:00
7 lines
198 B
Docker
7 lines
198 B
Docker
FROM ubuntu:jammy
|
|
COPY 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"]
|