File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11# Create a virtual environment with all tools installed
22# ref: https://hub.docker.com/_/alpine
33FROM alpine:edge AS env
4- LABEL maintainer= "mizux.dev@gmail.com"
4+
55# Install system build dependencies
66ENV PATH=/usr/local/bin:$PATH
77RUN apk add --no-cache git build-base linux-headers cmake
Original file line number Diff line number Diff line change 11# Create a virtual environment with all tools installed
22# ref: https://hub.docker.com/_/archlinux/
33FROM archlinux:latest AS env
4- LABEL maintainer= "mizux.dev@gmail.com"
4+
55# Install system build dependencies
66ENV PATH=/usr/local/bin:$PATH
77RUN pacman -Syu --noconfirm git base-devel cmake
Original file line number Diff line number Diff line change 11# Create a virtual environment with all tools installed
22# ref: https://quay.io/repository/centos/centos
33FROM quay.io/centos/centos:stream AS env
4- LABEL maintainer= "mizux.dev@gmail.com"
4+
55# Install system build dependencies
66ENV PATH=/usr/local/bin:$PATH
77RUN dnf -y update \
Original file line number Diff line number Diff line change 11# Create a virtual environment with all tools installed
22# ref: https://hub.docker.com/_/debian
33FROM debian:latest AS env
4- LABEL maintainer= "mizux.dev@gmail.com"
4+
55# Install system build dependencies
66ENV PATH=/usr/local/bin:$PATH
77RUN apt-get update -qq \
Original file line number Diff line number Diff line change 11# Create a virtual environment with all tools installed
22# ref: https://hub.docker.com/_/fedora
33FROM fedora:latest AS env
4- LABEL maintainer= "mizux.dev@gmail.com"
4+
55# Install system build dependencies
66ENV PATH=/usr/local/bin:$PATH
77RUN dnf -y update \
Original file line number Diff line number Diff line change 11# Create a virtual environment with all tools installed
22# ref: https://hub.docker.com/r/opensuse/tumbleweed
33FROM opensuse/tumbleweed AS env
4- LABEL maintainer= "mizux.dev@gmail.com"
4+
55# Install system build dependencies
66ENV PATH=/usr/local/bin:$PATH
77RUN zypper update -y \
Original file line number Diff line number Diff line change 11# Create a virtual environment with all tools installed
22# ref: https://hub.docker.com/_/ubuntu
33FROM ubuntu:rolling AS env
4- LABEL maintainer= "mizux.dev@gmail.com"
4+
55# Install system build dependencies
66ENV PATH=/usr/local/bin:$PATH
77RUN apt-get update -q \
You can’t perform that action at this time.
0 commit comments