-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add scheduler to go-releaser and github action to publish images
- Loading branch information
Showing
5 changed files
with
100 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ARG BASE_IMAGE=alpine:3.17.0 | ||
|
||
FROM ${BASE_IMAGE} | ||
LABEL org.opencontainers.image.title=scheduler | ||
LABEL org.opencontainers.image.description="Scheduler" | ||
LABEL org.opencontainers.image.url=https://hub.docker.com/r/gresearchdev/scheduler | ||
|
||
RUN addgroup -S -g 2000 armada && adduser -S -u 1000 armada -G armada | ||
USER armada | ||
COPY scheduler /app/ | ||
COPY config/scheduler/config.yaml /app/config/scheduler/config.yaml | ||
WORKDIR /app | ||
ENTRYPOINT ["./scheduler"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ARG BASE_IMAGE=alpine:3.17.0 | ||
|
||
FROM ${BASE_IMAGE} | ||
LABEL org.opencontainers.image.title=scheduleringester | ||
LABEL org.opencontainers.image.description="Scheduler Ingester" | ||
LABEL org.opencontainers.image.url=https://hub.docker.com/r/gresearchdev/scheduleringester | ||
|
||
RUN addgroup -S -g 2000 armada && adduser -S -u 1000 armada -G armada | ||
USER armada | ||
COPY scheduleringester /app/ | ||
COPY config/scheduleringester/config.yaml /app/config/scheduleringester/config.yaml | ||
WORKDIR /app | ||
ENTRYPOINT ["./scheduleringester"] |