Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .tekton/export-service-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ spec:
value: 5d
- name: dockerfile
value: Dockerfile
- name: hermetic
value: "true"
- name: prefetch-input
value: '[{"type": "gomod", "path": "."}]'
pipelineRef:
params:
- name: url
Expand Down
4 changes: 4 additions & 0 deletions .tekton/export-service-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ spec:
value: quay.io/redhat-user-workloads/hcc-integrations-tenant/export-service/export-service:{{revision}}
- name: dockerfile
value: Dockerfile
- name: hermetic
value: "true"
- name: prefetch-input
value: '[{"type": "gomod", "path": "."}]'
pipelineRef:
params:
- name: url
Expand Down
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ RUN GO111MODULE=on go build -ldflags "-w -s" -o export-service cmd/export-servic
############################
FROM registry.access.redhat.com/ubi9-minimal:latest

RUN microdnf update -y

COPY --from=builder /workspace/export-service /usr/bin
COPY --from=builder /workspace/db/migrations /db/migrations/
COPY --from=builder /workspace/static/spec/openapi.json /var/tmp/openapi.json
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/redhatinsights/export-service-go

go 1.24
go 1.24.0

require (
github.com/RedHatInsights/event-schemas-go v1.0.6
Expand Down
Loading