test / Dockerfile
theonlykid's picture
Update Dockerfile
564e1cb verified
raw
history blame contribute delete
256 Bytes
# Use the official Ubuntu image as a base image
FROM ubuntu:latest
# Set the working directory (optional)
WORKDIR /root
# Update the package list and install necessary packages
RUN apt-get update
RUN sudo
# Run the whoami command as root
CMD ["whoami"]