Create Dockerfile
Browse files- Dockerfile +12 -0
Dockerfile
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use Ubuntu 20.04 LTS as the base image
|
2 |
+
FROM ubuntu:20.04
|
3 |
+
|
4 |
+
# Update the package repository and install updates
|
5 |
+
RUN sudo apt update && apt upgrade -y
|
6 |
+
|
7 |
+
# Install any necessary packages here (example: git)
|
8 |
+
RUN sudo apt install slim
|
9 |
+
|
10 |
+
RUN sudo apt install ubuntu-desktop
|
11 |
+
|
12 |
+
Run sudo reboot
|