Create Dockerfile

This commit is contained in:
2025-05-12 20:19:18 +02:00
committed by Erick Ahmed
parent 1e7be9adb6
commit 4243734056
+18
View File
@@ -0,0 +1,18 @@
FROM ubuntu:22.04
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
build-essential \
gcc-avr \
avrdude \
arduino-core-avr \
make \
&& apt-get clean
WORKDIR /usr/src/
COPY . .
RUN make
CMD ["./main"]