I am trying to create a user manual in latex. I'm trying to use a 2 column table, one column has a list and the other column has a screenshot
I can create a minpage, but it's not aligned correctly and i can't get the borders
\begin{minipage}[c]{0.45\textwidth}
\begin{enumerate}
\item Open File Explorer
\item Type sudo apt-get install
\end{enumerate}
\end{minipage}
\hfill
\begin{minipage}[t]{0.45\textwidth}
\includegraphics[width=\textwidth]{example-image}
\caption{caption within minipage}
\end{minipage}


