Files
OpenPLC_v3/Dockerfile
T
Joakim Roubert 69c89b8075 Dockerfile: simplify by reordering WORKDIR line
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>
2021-12-10 09:56:58 +01:00

7 lines
122 B
Docker

FROM debian:bullseye-20211201
COPY . /workdir
WORKDIR /workdir
RUN ./install.sh docker
ENTRYPOINT ["./start_openplc.sh"]