mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Attempt greedy docker config update
This is an attempt at updating all docker configurations by simply replacing the `python` packages with `python3`. The Travis CI will let us know if this works.
This commit is contained in:
parent
8b91cd97a8
commit
61a78d0a6f
9 changed files with 9 additions and 9 deletions
|
@ -2,7 +2,7 @@ FROM base/archlinux:2018.01.01
|
|||
|
||||
RUN pacman -Sy --noconfirm archlinux-keyring
|
||||
RUN pacman -Syyu --noconfirm
|
||||
RUN pacman -S --noconfirm gnutls util-linux bash-completion cmake python git libfaketime
|
||||
RUN pacman -S --noconfirm gnutls util-linux bash-completion cmake python3 git libfaketime
|
||||
RUN pacman -S --noconfirm make gcc
|
||||
|
||||
# Setup language environment
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM centos:7
|
||||
|
||||
RUN yum update -y
|
||||
RUN yum install python git gcc gcc-c++ make gnutls-devel libuuid-devel libfaketime -y
|
||||
RUN yum install python3 git gcc gcc-c++ make gnutls-devel libuuid-devel libfaketime -y
|
||||
RUN yum install epel-release centos-release-scl -y
|
||||
RUN yum install which cmake3 devtoolset-7-gcc* -y
|
||||
RUN source scl_source enable devtoolset-7; gcc --version; cmake3 --version
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:stable
|
|||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime
|
||||
RUN apt-get install -y python
|
||||
RUN apt-get install -y python3
|
||||
|
||||
# Setup language environment
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:testing
|
|||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime
|
||||
RUN apt-get install -y python
|
||||
RUN apt-get install -y python3
|
||||
|
||||
# Setup language environment
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM fedora:28
|
||||
|
||||
RUN dnf update -y
|
||||
RUN dnf install python git gcc gcc-c++ cmake make gnutls-devel libuuid-devel libfaketime -y
|
||||
RUN dnf install python3 git gcc gcc-c++ cmake make gnutls-devel libuuid-devel libfaketime -y
|
||||
|
||||
# Setup language environment
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM fedora:29
|
||||
|
||||
RUN dnf update -y
|
||||
RUN dnf install python git gcc gcc-c++ cmake make gnutls-devel libuuid-devel libfaketime -y
|
||||
RUN dnf install python3 git gcc gcc-c++ cmake make gnutls-devel libuuid-devel libfaketime -y
|
||||
|
||||
# Setup language environment
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM opensuse/leap:15
|
||||
|
||||
RUN zypper install -y python awk coreutils git gcc gcc-c++ cmake make libgnutls-devel libuuid-devel libfaketime
|
||||
RUN zypper install -y python3 awk coreutils git gcc gcc-c++ cmake make libgnutls-devel libuuid-devel libfaketime
|
||||
|
||||
# Setup language environment
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM ubuntu:16.04
|
|||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime
|
||||
RUN apt-get install -y python
|
||||
RUN apt-get install -y python3
|
||||
|
||||
# Setup language environment
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM ubuntu:18.04
|
|||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime
|
||||
RUN apt-get install -y python
|
||||
RUN apt-get install -y python3
|
||||
|
||||
# Setup language environment
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue