Skip to content

Instantly share code, notes, and snippets.

View yashgyy's full-sized avatar
😀

Yash Singhal yashgyy

😀
View GitHub Profile
@minhoryang
minhoryang / Dockerfile
Last active May 21, 2024 11:46
docker-ubuntu-build-essential
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y --no-install-recommends apt-utils build-essential sudo git
RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo
USER docker