From 8d8d6d44886a32c3aff3034fb83cce7e9cbe112e Mon Sep 17 00:00:00 2001 From: Rob Adams <134746213+illinoisrobert@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:33:07 -0500 Subject: [PATCH] Revert debug comments. --- beta/Dockerfile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/beta/Dockerfile b/beta/Dockerfile index 019d43f..a911db2 100644 --- a/beta/Dockerfile +++ b/beta/Dockerfile @@ -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/. .