Select Git revision
-
Andrew E. Torda authored
Removed buffering of stdout. This is for students to read, rather than speed.
Andrew E. Torda authoredRemoved buffering of stdout. This is for students to read, rather than speed.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile_lib 291 B
FROM python:3
ENV adwin_version 5.0.12
WORKDIR /code
# Install ADwin library
RUN wget https://www.adwin.de/pub/cd/adwin-lib-$adwin_version.tar.gz
RUN tar -xvf adwin-lib-$adwin_version.tar.gz
WORKDIR /code/adwin-lib-$adwin_version/
RUN ./configure
RUN make
RUN make install
WORKDIR /code