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 ubuntu:24.04 | |
RUN apt-get update && apt-get install -y curl git | |
# RUN apt update && apt install git | |
RUN curl -fsSL https://deb.nodesource.com/setup_23.x | bash - &&\ | |
apt-get install -y nodejs &&\ | |
npm install -g [email protected] ts-node typescript | |
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ |