Dockerfile.centos7 tcl server

Signed-off-by: James Cherry <cherry@CerezoBook.local>
This commit is contained in:
James Cherry 2026-07-26 14:58:32 -07:00
parent 534e21abcf
commit fbf4d5e3a8
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ RUN source /opt/rh/devtoolset-11/enable && \
# Download TCL # Download TCL
RUN wget https://github.com/tcltk/tcl/archive/refs/tags/core-8-6-16.tar.gz -O tcl8.6.16-src.tar.gz && \ RUN wget https://github.com/tcltk/tcl/archive/refs/tags/core-8-6-16.tar.gz -O tcl8.6.16-src.tar.gz && \
tar -xvf tcl8.6.16-src.tar.gz --strip-components=1 -C /tmp/tcl8.6.16 && \ mkdir -p tcl8.6.16 && \
tar -xvf tcl8.6.16-src.tar.gz -C tcl8.6.16 --strip-components=1 && \
rm tcl8.6.16-src.tar.gz rm tcl8.6.16-src.tar.gz
# Build TCL # Build TCL