-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and refactor Dockerfiles to newer Ubuntu
The docker images all have new, simpler names and use Ubuntu 20.04 (instead of 18.04) as their base. A few new tools have been added, specifically what is needed for: - Linux on RISC-V - see #980 - Winodows on ARM - see #969 Fixes #976
- Loading branch information
1 parent
344d715
commit dfdc174
Showing
60 changed files
with
199 additions
and
344 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,6 @@ Dockerfile text | |
*.yaml text | ||
*.yml text | ||
.dockerignore text | ||
uid_entrypoint text | ||
|
||
# Qt | ||
*.pro text | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+8 Bytes
(100%)
core/org.eclipse.cdt.core.linux.aarch64/os/linux/aarch64/libpty.so
Binary file not shown.
Binary file modified
BIN
+112 Bytes
(100%)
core/org.eclipse.cdt.core.linux.aarch64/os/linux/aarch64/libspawner.so
Binary file not shown.
Binary file modified
BIN
+56 Bytes
(100%)
core/org.eclipse.cdt.core.linux.ppc64le/os/linux/ppc64le/libpty.so
Binary file not shown.
Binary file modified
BIN
+48 Bytes
(100%)
core/org.eclipse.cdt.core.linux.ppc64le/os/linux/ppc64le/libspawner.so
Binary file not shown.
Binary file modified
BIN
+4.1 KB
(130%)
core/org.eclipse.cdt.core.linux.x86_64/os/linux/x86_64/libpty.so
Binary file not shown.
Binary file modified
BIN
+4.11 KB
(110%)
core/org.eclipse.cdt.core.linux.x86_64/os/linux/x86_64/libspawner.so
Binary file not shown.
Binary file modified
BIN
+80 Bytes
(100%)
core/org.eclipse.cdt.core.macosx/os/macosx/aarch64/libpty.jnilib
Binary file not shown.
Binary file modified
BIN
+64 Bytes
(100%)
core/org.eclipse.cdt.core.macosx/os/macosx/aarch64/libspawner.jnilib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
core/org.eclipse.cdt.core.macosx/os/macosx/x86_64/libpty.jnilib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
core/org.eclipse.cdt.core.macosx/os/macosx/x86_64/libspawner.jnilib
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-60.1 KB
(94%)
core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/pty.dll
Binary file not shown.
Binary file modified
BIN
-23.6 KB
(93%)
core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/spawner.dll
Binary file not shown.
Binary file modified
BIN
-64.6 KB
(84%)
core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/starter.exe
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM cdt-infra:latest | ||
USER root | ||
|
||
RUN chown -R 1001:0 ${HOME} \ | ||
&& chmod -R g+rwX ${HOME} | ||
|
||
USER 1001 | ||
|
||
CMD ["/home/vnc/.vnc/xstartup.sh"] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM cdt-infra:latest | ||
USER root | ||
|
||
RUN chown -R 1000:0 ${HOME} \ | ||
&& chmod -R g+rwX ${HOME} | ||
|
||
USER 1000 | ||
|
||
CMD ["/home/vnc/.vnc/xstartup.sh"] |
File renamed without changes.
25 changes: 0 additions & 25 deletions
25
docker/cdt-infra-plus-eclipse-install-github/ubuntu-18.04/Dockerfile
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.