This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get the base Ubuntu image from Docker Hub | |
| FROM jenkins/jenkins:lts | |
| # Update apps on the base image | |
| RUN apt-get -y update && apt-get install -y | |
| # Install the CMake | |
| RUN apt-get -y install cmake | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install samba samba-common-bin | |
| mkdir /home/pi/Share | |
| sudo nano /etc/samba/smb.conf | |
| [raspberry pi share] | |
| path = /home/pi/shared | |
| writeable=Yes |