Files
OpenPLC_v3/Dockerfile

13 lines
301 B
Docker

FROM debian
RUN apt-get update \
&& apt-get install -y build-essential pkg-config bison flex autoconf \
automake libtool make git python3 python3-pip \
sqlite3 cmake git
COPY . /workdir
WORKDIR /workdir
RUN pip3 install -r requirements.txt
RUN ./install.sh docker
ENTRYPOINT ["./start_openplc.sh"]