Skip to content

Commit

Permalink
Merge pull request #333 from pixlise/feature/em-import
Browse files Browse the repository at this point in the history
Fixing build and BGT name
  • Loading branch information
pnemere authored Nov 1, 2024
2 parents fd388fc + fc7b719 commit 9406077
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ WORKDIR /root

COPY --from=builder /build/_out/pixlise-api-linux ./
#COPY ./_out/pixlise-api-linux ./
RUN ls -al
#RUN ls -al
COPY beam-tool/BGT ./
COPY beam-tool/Geometry_PIXL_EM_Landing_25Jan2021.csv ./
RUN ls -al
#RUN ls -al

RUN chmod +x ./pixlise-api-linux && wget https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem -O global-bundle.pem
# Expose port 8080 to the outside world
Expand Down
2 changes: 1 addition & 1 deletion api/ws/handlers/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ func createBeamLocation(rsiPath string, outputBeamLocationPath string, logger lo
}
}

cmd := exec.Command(bgtPath+"BGTa", bgtPath+"Geometry_PIXL_EM_Landing_25Jan2021.csv", rsiPath, outSurfaceTop, outRXL, outLog)
cmd := exec.Command(bgtPath+"BGT", bgtPath+"Geometry_PIXL_EM_Landing_25Jan2021.csv", rsiPath, outSurfaceTop, outRXL, outLog)
if err := cmd.Run(); err != nil {
return "", "", fmt.Errorf("BGT tool error: %v", err)
}
Expand Down

0 comments on commit 9406077

Please sign in to comment.