mirror of
https://github.com/thiagoralves/OpenPLC_v3.git
synced 2026-02-07 20:02:31 +08:00
13 lines
301 B
Docker
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"]
|