Skip to content

Instantly share code, notes, and snippets.

View jaswanthikolla's full-sized avatar

Jaswanthi Kolla jaswanthikolla

View GitHub Profile
@jaswanthikolla
jaswanthikolla / dockerfile
Last active May 19, 2024 03:59
relocatable python build
# Use the latest Ubuntu image as a base
FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive
# Install dependencies required for compiling Python
RUN apt-get update && apt-get install -y \
build-essential \
libssl-dev \
zlib1g-dev \
libncurses5-dev \