Skip to content

Instantly share code, notes, and snippets.

@RenatoExpert
Created December 4, 2023 21:39
Show Gist options
  • Save RenatoExpert/6cd39b5fb2389dd4ed90e2ad96fdc426 to your computer and use it in GitHub Desktop.
Save RenatoExpert/6cd39b5fb2389dd4ed90e2ad96fdc426 to your computer and use it in GitHub Desktop.
Dockerfile to ScadaBR v1.2
FROM debian:latest
WORKDIR /scadabr
RUN apt update && apt upgrade
RUN yes | apt install wget unzip
RUN wget https://github.com/ScadaBR/ScadaBR/releases/download/v1.2/ScadaBR_Setup_Linux.zip
RUN unzip ScadaBR_Setup_Linux.zip
CMD ./install_scadabr.sh && echo "Press CTRL+P then CTRL+Q now" && read REPLY
# Build image with `docker buildx build . -t scadabr:latest`
# Now play it with `docker run -ti -p 8080:8080 scadabr:latest` and answer its questions
# In your browser, access localhost:8080/ScadaBR, credentials are admin/admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment