-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathDockerfile.debug
152 lines (131 loc) · 3.91 KB
/
Dockerfile.debug
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# ARGUMENTS --------------------------------------------------------------------
##
# Board architecture
##
ARG IMAGE_ARCH=
##
# Base container version
##
ARG BASE_VERSION=4
##
# Application root directory inside the container
##
ARG APP_ROOT=
##
# Debug port
##
ARG DEBUG_SSH_PORT=
##
# Run as
##
ARG SSHUSERNAME=
##
# Board GPU vendor prefix
##
ARG GPU=
##
# Slint Version
##
ARG SLINT_VERSION=1.9.2
##
# Deploy Step
##
FROM --platform=linux/${IMAGE_ARCH} \
torizon/wayland-base${GPU}:${BASE_VERSION} AS debug
ARG IMAGE_ARCH
ARG GPU
ARG DEBUG_SSH_PORT
ARG APP_ROOT
ARG SSHUSERNAME
ARG SLINT_VERSION
# SSH for remote debug
EXPOSE ${DEBUG_SSH_PORT}
# Make sure we don't get notifications we can't answer during building.
ENV DEBIAN_FRONTEND="noninteractive"
# for vivante GPU we need some "special" sauce
RUN apt-get -q -y update && \
if [ "${GPU}" = "-vivante" ] || [ "${GPU}" = "-imx8" ]; then \
apt-get -q -y install \
imx-gpu-viv-wayland-dev \
; else \
apt-get -q -y install \
libgl1 \
; fi \
&& \
apt-get clean && apt-get autoremove && \
rm -rf /var/lib/apt/lists/*
# your regular RUN statements here
# Install debug required packages
RUN apt-get -q -y update && \
apt-get -q -y install \
openssl \
openssh-server \
rsync \
file \
curl \
gdb \
gdbserver \
&& \
apt-get clean && apt-get autoremove && \
rm -rf /var/lib/apt/lists/*
# Download Slint binary packages
RUN if [ "$IMAGE_ARCH" = "arm64" ] ; then \
CROSS_TOOLCHAIN_ARCH=arm64 ; \
elif [ "$IMAGE_ARCH" = "armhf" ] ; then \
CROSS_TOOLCHAIN_ARCH=armhf ; \
fi && \
if [ "$SLINT_VERSION" = "nightly" ]; then \
GITHUB_RELEASE=nightly; \
GITHUB_FILENAME_INFIX=nightly; \
else \
GITHUB_RELEASE=v$SLINT_VERSION; \
GITHUB_FILENAME_INFIX=$SLINT_VERSION; \
fi && \
wget -O - https://github.com/slint-ui/slint/releases/download/$GITHUB_RELEASE/Slint-cpp-$GITHUB_FILENAME_INFIX-Linux-$CROSS_TOOLCHAIN_ARCH.tar.gz \
| tar xzvf - --strip-components 1 -C /usr --wildcards --no-wildcards-match-slash "*/lib/*" && \
rm -rf /usr/lib/cmake/Slint
# Install Slint dependencies
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install \
libfontconfig1 \
libxkbcommon0 \
libinput10 \
fonts-noto-core \
fonts-noto-cjk \
fonts-noto-cjk-extra \
fonts-noto-color-emoji \
fonts-noto-ui-core \
fonts-noto-ui-extra \
&& rm -rf /var/lib/apt/lists/*
# automate for torizonPackages.json
RUN apt-get -q -y update && \
apt-get -q -y install \
# DO NOT REMOVE THIS LABEL: this is used for VS Code automation
# __torizon_packages_dev_start__
# __torizon_packages_dev_end__
# DO NOT REMOVE THIS LABEL: this is used for VS Code automation
&& \
apt-get clean && apt-get autoremove && \
rm -rf /var/lib/apt/lists/*
# Default to Slint running in fullscreen
ENV SLINT_FULLSCREEN=1
# ⚠️ DEBUG PURPOSES ONLY!!
# THIS CONFIGURES AN INSECURE SSH CONNECTION
# create folders needed for the different components
# configures SSH access to the container and sets environment by default
RUN mkdir /var/run/sshd && \
sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' \
-i /etc/pam.d/sshd && \
if test $SSHUSERNAME != root ; \
then mkdir -p /home/$SSHUSERNAME/.ssh ; \
else mkdir -p /root/.ssh ; fi && \
echo "PermitUserEnvironment yes" >> /etc/ssh/sshd_config && \
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config && \
echo "Port ${DEBUG_SSH_PORT}" >> /etc/ssh/sshd_config && \
echo "PasswordAuthentication yes" >> /etc/ssh/sshd_config && \
echo "PermitEmptyPasswords yes" >> /etc/ssh/sshd_config && \
su -c "env" $SSHUSERNAME > /etc/environment && \
echo "$SSHUSERNAME:" | chpasswd -e
RUN rm -r /etc/ssh/ssh*key && \
dpkg-reconfigure openssh-server
CMD [ "/usr/sbin/sshd", "-D" ]