Skip to content

Commit

Permalink
Importer updated to allow pixl-em imports, attempts to run beam geome…
Browse files Browse the repository at this point in the history
…try tool (it is now in the docker container). First experiment, may not work yet
  • Loading branch information
Peter Nemere committed Nov 1, 2024
1 parent 41db8fd commit e5fdc0a
Show file tree
Hide file tree
Showing 4 changed files with 396 additions and 125 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
FROM golang:1.21-alpine
FROM golang:1.21-alpine AS builder
ARG VERSION
ARG GITHUB_SHA

Expand All @@ -29,8 +29,12 @@ RUN apk --no-cache add ca-certificates libc6-compat wget
WORKDIR /root
# Copy the Pre-built binary file from the previous stage

COPY --from=0 /build/_out/pixlise-api-linux ./
COPY --from=builder /build/_out/pixlise-api-linux ./
#COPY ./_out/pixlise-api-linux ./
RUN ls -al
COPY beam-tool/BGT ./
COPY beam-tool/Geometry_PIXL_EM_Landing_25Jan2021.csv ./
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
Loading

0 comments on commit e5fdc0a

Please sign in to comment.