Last active
April 17, 2023 14:15
-
-
Save hanxue/8886faec37a5476e3a5f8284e5ce38ed to your computer and use it in GitHub Desktop.
Petalinux 2019.1 Docker
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
FROM ubuntu:18.04 | |
#RUN dpkg --add-architecture i386 | |
RUN apt-get update | |
RUN apt-get install -y tofrodos | |
RUN apt-get install -y iproute2 | |
RUN apt-get install -y gawk | |
RUN apt-get install -y xvfb | |
RUN apt-get install -y gcc-4.8 | |
RUN apt-get install -y git | |
RUN apt-get install -y make | |
RUN apt-get install -y net-tools | |
RUN apt-get install -y libncurses5-dev | |
RUN apt-get install -y tftpd | |
RUN apt-get install -y tftp-hpa | |
RUN apt-get install -y zlib1g-dev | |
RUN apt-get install -y libssl-dev | |
RUN apt-get install -y flex | |
RUN apt-get install -y bison | |
RUN apt-get install -y libselinux1 | |
RUN apt-get install -y gnupg | |
RUN apt-get install -y wget | |
RUN apt-get install -y diffstat | |
RUN apt-get install -y chrpath | |
RUN apt-get install -y socat | |
RUN apt-get install -y xterm | |
RUN apt-get install -y autoconf | |
RUN apt-get install -y libtool | |
RUN apt-get install -y tar | |
RUN apt-get install -y unzip | |
RUN apt-get install -y texinfo | |
RUN apt-get install -y zlib1g-dev | |
RUN apt-get install -y gcc-multilib | |
RUN apt-get install -y build-essential | |
RUN apt-get install -y libsdl1.2-dev | |
RUN apt-get install -y libglib2.0-dev | |
RUN apt-get install -y screen | |
RUN apt-get install -y apt-utils | |
RUN /bin/ln -fs /usr/share/zoneinfo/Asia/Singapore /etc/localtime | |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y expect | |
RUN apt-get install -y locales | |
RUN apt-get install -y cpio | |
RUN apt-get install -y sudo | |
RUN echo "%sudo ALL=(ALL:ALL) ALL" >> /etc/sudoers | |
RUN echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers | |
# Set locale | |
RUN locale-gen en_US.UTF-8 | |
ENV LANG en_US.UTF-8 | |
ENV LANGUAGE en_US:en | |
ENV LC_ALL en_US.UTF-8 | |
RUN apt-get install -y software-properties-common | |
RUN echo "\r" | add-apt-repository ppa:deadsnakes/ppa | |
RUN apt-get update && apt-get install -y python3.4 | |
RUN useradd petalinux | |
RUN chmod +w /opt | |
RUN chown -R petalinux:petalinux /opt | |
RUN mkdir -p /home/petalinux/workspace | |
RUN chown -R petalinux:petalinux /home/petalinux | |
WORKDIR /opt | |
USER petalinux | |
COPY ./petalinux-v2019.1-final-installer.run . | |
RUN ls -lh petalinux-v2019.1-final-installer.run | |
#RUN chmod +x petalinux-v2019.1-final-installer.run | |
ENV DEBIAN_FRONTEND noninteractive | |
USER root | |
RUN apt-get update | |
RUN apt-get install -y gnome-terminal | |
RUN apt-get install -y tightvncserver | |
RUN mkdir -p /root/.vnc | |
ADD xstartup /root/.vnc/xstartup | |
ADD passwd /root/.vnc/passwd | |
RUN sudo chmod 600 /root/.vnc/passwd | |
RUN sudo rm /tmp/.X1-lock || : | |
RUN sudo rm /bin/sh && ln -s /bin/bash /bin/sh | |
CMD sudo /usr/bin/vncserver :1 -geometry 1280x800 -depth 24 && sudo tail -f /root/.vnc/*:1.log | |
EXPOSE 5901 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment