Skip to content

Commit

Permalink
Switch PHP version from 8.0 to 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vboctor committed Feb 23, 2021
1 parent 6ca433f commit dbd1e60
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions .gitpod/Dockerfile
Expand Up @@ -4,34 +4,32 @@ USER root

# Install packages

RUN apt-get update
RUN add-apt-repository ppa:ondrej/php

RUN apt-get update -y

RUN apt-get upgrade -y

RUN apt-get install -y software-properties-common

RUN add-apt-repository ppa:ondrej/php

RUN apt-get update -y

RUN apt-get install -y php8.0
RUN apt-get install -y php7.4

RUN apt-get install -y php8.0-common
RUN apt-get install -y php7.4-common

RUN apt-get install -y php8.0-gd
RUN apt-get install -y php7.4-gd

RUN apt-get install -y php8.0-curl
RUN apt-get install -y php7.4-curl

RUN apt-get install -y php8.0-soap
RUN apt-get install -y php7.4-soap

RUN apt-get install -y php8.0-mbstring
RUN apt-get install -y php7.4-mbstring

RUN apt-get install -y php8.0-mysql
RUN apt-get install -y php7.4-mysql

RUN apt-get install -y php8.0-cli
RUN apt-get install -y php7.4-cli

RUN apt-get install -y php8.0-dev
RUN apt-get install -y php7.4-dev

RUN apt-get install -y php8.0-xml
RUN apt-get install -y php7.4-xml

RUN rm -rf /var/lib/apt/lists/*

0 comments on commit dbd1e60

Please sign in to comment.