mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00

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
9 lines
138 B
Docker
9 lines
138 B
Docker
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"]
|