theonlykid commited on
Commit
f6eb4a8
·
verified ·
1 Parent(s): f49a3de

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Ubuntu image as a base image
2
+ FROM ubuntu:latest
3
+
4
+ # Update the package list and install necessary packages
5
+ RUN apt-get update && apt-get install -y \
6
+ sudo
7
+
8
+ # Run the whoami command as root
9
+ CMD ["whoami"]