mirror of
https://github.com/thiagoralves/OpenPLC_v3.git
synced 2026-08-18 19:48:42 +08:00
Moving WORKDIR before the ./install.sh command, there is no need for the cd command. Change-Id: Ia4a43f18ae21d14b78e8eb22a48f3e31984c797c Signed-off-by: Joakim Roubert <joakimr@axis.com>
7 lines
122 B
Docker
7 lines
122 B
Docker
FROM debian:bullseye-20211201
|
|
|
|
COPY . /workdir
|
|
WORKDIR /workdir
|
|
RUN ./install.sh docker
|
|
ENTRYPOINT ["./start_openplc.sh"]
|