Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ru_ref #61

Merged
merged 2 commits into from
Dec 14, 2023
Merged
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
7 changes: 1 addition & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ RUN go get
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -mod mod -o /go/bin/eq-questionnaire-launcher .

######## Start a new stage from scratch #######
FROM alpine:latest

RUN apk --no-cache update && \
apk --no-cache add python3 py-pip py-setuptools ca-certificates && \
pip --no-cache-dir install awscli && \
rm -rf /var/cache/apk/*
FROM alpine:latest

# Copy the Pre-built binary file and entry point from the previous stage
COPY --from=builder /go/bin/eq-questionnaire-launcher .
Expand Down
2 changes: 1 addition & 1 deletion authentication/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ func GetDefaultValues() map[string]string {
defaults["period_id"] = "201605"
defaults["period_str"] = "May 2017"
defaults["collection_exercise_sid"] = collectionExerciseSid.String()
defaults["ru_ref"] = "12346789012A"
defaults["ru_ref"] = "12345678901A"
defaults["ru_name"] = "ESSENTIAL ENTERPRISE LTD."
defaults["ref_p_start_date"] = "2016-05-01"
defaults["ref_p_end_date"] = "2016-05-31"
Expand Down