Initial working version of Dockerfile

This commit is contained in:
Pelochus
2024-04-06 10:19:45 +00:00
parent 4014cd5b28
commit 3b6ff8abb2
2 changed files with 3 additions and 1 deletions

View File

@@ -1,2 +1,3 @@
FROM ubuntu:focal FROM ubuntu:focal
ENTRYPOINT /bin/bash ./entrypoint.sh COPY setup.sh /setup.sh
RUN ./setup.sh

1
docker/entrypoint.sh → docker/setup.sh Normal file → Executable file
View File

@@ -1,6 +1,7 @@
#!/bin/bash #!/bin/bash
# Dependencies # Dependencies
apt update
apt install -y python3 pip git curl wget nano sudo # python3-tk apt install -y python3 pip git curl wget nano sudo # python3-tk
# Better than using the default from Rockchip # Better than using the default from Rockchip