Spaces:
Build error
Build error
File size: 256 Bytes
f6eb4a8 564e1cb f6eb4a8 564e1cb f6eb4a8 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# 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"]
|