Skip to content

Commit

Permalink
Egeria dockerfile updated
Browse files Browse the repository at this point in the history
  • Loading branch information
CDimonaco committed Nov 14, 2024
1 parent a9fa001 commit 698f102
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions egeria/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV LC_ALL en_US.UTF-8
RUN zypper -n in make gcc git-core go1.23 nodejs22 npm
COPY . /build
WORKDIR /build
RUN make
RUN make build

FROM opensuse/leap:15
LABEL org.opencontainers.image.source="https://github.com/trento-project/workzeugkoffer/egeria"
Expand All @@ -14,5 +14,5 @@ LABEL org.opencontainers.image.title="Egeria"
LABEL org.opencontainers.image.description="Dashboard for trento pr environments"
WORKDIR /app
COPY --from=binary-build /build/egeria .
EXPOSE 4000/tcp
EXPOSE 4040/tcp
ENTRYPOINT ["/app/egeria"]
2 changes: 1 addition & 1 deletion egeria/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ endif
default: clean build-frontend mod-tidy fmt vet-check test build

.PHONY: build
build: build-frontend egeria
build: clean build-frontend egeria
egeria:
$(GO_BUILD) -o egeria ./cmd/egeria

Expand Down

0 comments on commit 698f102

Please sign in to comment.