Skip to content

Commit

Permalink
Revert debug comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
illinoisrobert authored Aug 8, 2024
1 parent 303c36f commit 8d8d6d4
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions beta/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ LABEL org.opencontainers.image.source = "https://github.com/ITI/pcesapps"
RUN ldd --version
WORKDIR /build
COPY . .
# RUN cd bld-dir && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./bld.go
# RUN cd bld-dir && ./bld -is args-bld
# RUN cd db && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build cnvrtExec.go
# RUN cd db && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build cnvrtDesc.go
# RUN cd sim-dir && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./sim.go
RUN cd bld-dir && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./bld.go
RUN cd bld-dir && ./bld -is args-bld
RUN cd db && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build cnvrtExec.go
RUN cd db && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build cnvrtDesc.go
RUN cd sim-dir && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./sim.go

# Production phase
FROM debian:bookworm
#RUN apt update && apt upgrade -y && apt install -y \
# python3 \
# python3-tk \
# python3-pil \
# python3-pil.imagetk vim-nox \
# python3-yaml \
# python3-matplotlib
RUN apt update && apt upgrade -y && apt install -y \
python3 \
python3-tk \
python3-pil \
python3-pil.imagetk vim-nox \
python3-yaml \
python3-matplotlib
WORKDIR /app
COPY --from=builder /build/. .

0 comments on commit 8d8d6d4

Please sign in to comment.