RUN apt-get install gcc python3 python3-pip -y RUN pip3 install --break-system-packages lark-parser RUN ln -s /usr/bin/python3 /usr/bin/python COPY ./wmc/wm.c ./wm.c COPY ./wmc/wma.py /usr/bin/wma RUN chmod +x /usr/bin/wma RUN chmod 705 /usr/bin/wma COPY ./wmc/wmc.py /usr/bin/wmc RUN chmod +x /usr/bin/wmc RUN chmod 705 /usr/bin/wmc RUN gcc -Os -ansi wm.c -o /usr/bin/wm -lm RUN rm wm.c RUN chmod +x /usr/bin/wm RUN chmod 705 /usr/bin/wm