Skip to content

Instantly share code, notes, and snippets.

@yarongon
yarongon / Dockerfile
Last active March 12, 2025 10:48
VSCode: TypeScript and Latex Remote Docker Development
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 \