Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
FROM golang:1.23.0-bookworm AS build | |
ARG upx_version=4.2.4 | |
RUN apt-get update && apt-get install -y --no-install-recommends xz-utils && \ | |
curl -Ls https://github.com/upx/upx/releases/download/v${upx_version}/upx-${upx_version}-amd64_linux.tar.xz -o - | tar xvJf - -C /tmp && \ | |
cp /tmp/upx-${upx_version}-amd64_linux/upx /usr/local/bin/ && \ | |
chmod +x /usr/local/bin/upx && \ | |
apt-get remove -y xz-utils && \ | |
rm -rf /var/lib/apt/lists/* |
I will keep updating the list whenever I come accross excellent Devops related courses. | |
DevOps: | |
Beginner level: | |
DevOps Essentials (Free): https://linuxacademy.com/cp/modules/view/id/192 | |
DevSecOps Essentials (Free): https://linuxacademy.com/cp/modules/view/id/266 | |
DevOps Foundation: https://www.linkedin.com/learning/devops-foundations/welcome | |
DevOps Advance Topics: |
# Change to default Python3 | |
alias python='python3' | |
python --version | |
# Install Code Formatter for Python and you need to set AWS Cloud9「Preferences」->「Python Support」->「Custom Code Formatter」 | |
# yapf -i "$file" | |
sudo pip install yapf | |
sudo yum -y update | |
sudo yum -y install aws-cli | |
sudo -H pip install awscli --upgrade | |
# Install brew and update SAM CLI to the latest version. |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script> | |
function invite() { | |
var url = '/people/~/mailbox', | |
body = { | |
recipients: { | |
values: [{ | |
person: { |