Skip to content

Commit

Permalink
New Version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
disposab1e committed Nov 14, 2019
1 parent 05156c9 commit e23e345
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
work.md
decription.md
build/
/docs/build/
/build/_output
.DS_Store
12 changes: 12 additions & 0 deletions build/bundle/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM quay.io/operator-framework/upstream-registry-builder as builder

COPY manifests manifests
RUN ./bin/initializer -o ./bundles.db

FROM scratch
COPY --from=builder /build/bundles.db /bundles.db
COPY --from=builder /build/bin/registry-server /registry-server
COPY --from=builder /bin/grpc_health_probe /bin/grpc_health_probe
EXPOSE 50051
ENTRYPOINT ["/registry-server"]
CMD ["--database", "bundles.db"]

0 comments on commit e23e345

Please sign in to comment.