Skip to content

Instantly share code, notes, and snippets.

View appleparan's full-sized avatar

Jongsu Liam Kim appleparan

View GitHub Profile
@appleparan
appleparan / ecCodes.Dockerfile
Last active May 19, 2024 13:20
Docker image for ecCodes (CentOS 7.8). Use linuxbrew to avoid glibc dependency hell
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 \
@appleparan
appleparan / Dockerfile
Last active November 14, 2024 23:56
Dockerfile for appleparan/ml_base
# 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 \