-
Notifications
You must be signed in to change notification settings - Fork 15
Conversation
|
||
# Upload to S3 (using AWS CLI) | ||
aws s3 cp $TAR_FILE s3://$AWS_BUCKET_NAME/docker/v$DOCKER_VERSION/ | ||
aws s3 cp /$TAR_FILE s3://$AWS_BUCKET_NAME/docker/bin/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest to remove these lines and let the Drone upload the files to S3.
So nobody of the team accidentally uploads files to S3 while building at home.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. But for now, this build did not run within Drone.
I see, ok it's a native ARM build in Docker on Pi at the moment. |
This is just a fix for the first release of the Hypriot Raspbian Image where docker was installed without a debian package.
This reverts commit f61d0d1.
@DieterReuter I want this to be merged before we release a new SD image. Everything built from master branches. |
Add creating of debian package
👍 ⭐ ⭐ |
Are you doing another build of the docker deb? |
I can create a new build 1.5.0-8 for tomorrow. |
After compiling Docker from source we create a debian installer package and push it to S3 bucket.
Right now, only all Docker related files are included in the .deb package.
TODO: include scripts for install/deinstall/update package
Connects to hypriot/build-pipeline#53