This file contains 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
# 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 \ |