This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:centos7.8.2003 | |
# Install required packages | |
RUN yum groupinstall -y 'Development Tools' | |
RUN yum install -y gcc \ | |
make \ | |
patch \ | |
zlib-devel \ | |
bzip2 \ | |
bzip2-devel \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Image for vision and tabular machine learnig project with jupterlab | |
FROM nvcr.io/nvidia/tensorrt:24.10-py3 AS base | |
# Declare environmental variables | |
ENV DEBIAN_FRONTEND=noninteractive \ | |
DEBCONF_NONINTERACTIVE_SEEN=true \ | |
TZ=Asia/Seoul \ | |
LANG=en_US.UTF-8 \ | |
LC_ALL=en_US.UTF-8 \ | |
SHELL=/bin/bash \ |
OlderNewer