Skip to content

Commit 7ae4197

Browse files
AsCressbessman
authored andcommitted
feat: added Dockerfile
1 parent 0285f6d commit 7ae4197

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM ubuntu:22.04
2+
3+
RUN apt-get update && apt-get install -y \
4+
cmake \
5+
make \
6+
git \
7+
wget \
8+
&& rm -rf /var/lib/apt/lists/*
9+
10+
RUN wget -qO- https://ww1.microchip.com/downloads/aemDocuments/documents/DEV/ProductDocuments/SoftwareTools/xc16-v2.10-full-install-linux64-installer.run \
11+
-O /tmp/xc16-installer.run && \
12+
chmod +x /tmp/xc16-installer.run && \
13+
/tmp/xc16-installer.run --mode unattended --prefix /opt/microchip/xc16/v2.10 --netservername "" && \
14+
rm /tmp/xc16-installer.run

0 commit comments

Comments
 (0)