Skip to content

Instantly share code, notes, and snippets.

View cedrichansen's full-sized avatar

Cedric Hansen cedrichansen

View GitHub Profile
@cedrichansen
cedrichansen / Dockerfile
Last active October 29, 2025 02:58
Dockerfile to setup a really basic ubuntu docker image, with some basic dependencies (git, curl, etc)
## Usage
# 1 build using something like `docker build -t ubuntu-dev:latest .` (with this gist/Dockerfile in current directory)
# 2 run container `docker run -it --name chansen-dev chansen-ubuntu-dev /bin/bash`
# 3 start/go into container `docker start -ai chansen-dev`
# Use latest Ubuntu image
FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive