Alpine Linux All In One
alpine
Alpine Linux is an independent, non-commercial, general purpose Linux distribution designed for power users who appreciate security, simplicity and resource efficiency.
Alpine Linux 是一个独立的、非商业的、通用的 Linux 发行版,专为注重安全性、简单性和资源效率的高级用户而设计。
https://pkgs.alpinelinux.org/packages
https://gitlab.alpinelinux.org/alpine
https://gitlab.alpinelinux.org/alpine/infra
https://gitlab.alpinelinux.org/alpine/aports/-/issues
Docker
Dockerfile
Dockerfile 是用于创建容器映像的指令脚本,它基于文本。
FROM node:12-alpine
RUN apk add --no-cache python2 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "/app/src/index.js"]
https://docs.docker.com/get-started/
https://github.com/docker/getting-started
CI/CD
GitHub CI
GitLab CI