Skip to content

Commit 75e554a

Browse files
authored
Disable docker build action (#494)
1 parent 4d59529 commit 75e554a

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

.github/workflows/docker-latest.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Docker Latest
22

33
on:
44
workflow_dispatch:
5-
push:
6-
branches:
7-
- 2.x
5+
# push:
6+
# branches:
7+
# - 2.x
88

99
jobs:
1010
build-and-push:

.github/workflows/docker-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Docker Release
22

33
on:
44
workflow_dispatch:
5-
release:
6-
types: [ created ]
5+
# release:
6+
# types: [ created ]
77

88
jobs:
99
build-and-push:

docker/Dockerfile

+5-9
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,15 @@ ENV DEBIAN_FRONTEND noninteractive
88
RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y
99

1010
# requirements
11-
RUN apt-get install -y software-properties-common curl zip unzip gcc
12-
13-
# nginx
14-
RUN apt-get install -y nginx
15-
16-
# php
17-
RUN apt-get update \
18-
&& apt-get install -y cron gnupg gosu curl ca-certificates zip unzip supervisor libcap2-bin libpng-dev \
19-
dnsutils librsvg2-bin fswatch wget openssh-client \
11+
RUN apt-get install -y software-properties-common curl zip unzip gcc nginx \
12+
cron gnupg gosu curl ca-certificates zip unzip supervisor libcap2-bin libpng-dev \
13+
dnsutils librsvg2-bin fswatch wget openssh-client \
2014
&& add-apt-repository ppa:ondrej/php -y \
2115
&& apt-get update \
2216
&& apt-get install -y php8.2 php8.2-fpm php8.2-mbstring php8.2-mcrypt php8.2-gd php8.2-xml \
2317
php8.2-curl php8.2-gettext php8.2-zip php8.2-bcmath php8.2-soap php8.2-redis php8.2-sqlite3 php8.2-intl
18+
19+
# php
2420
COPY docker/php.ini /etc/php/8.2/cli/conf.d/99-vito.ini
2521

2622
# composer

0 commit comments

Comments
 (0)