Skip to content

Commit 18b7e26

Browse files
committed
deps: remove unnecessary dependencies
1 parent dbe2dd4 commit 18b7e26

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ VOLUME /app/var/
1818
# persistent / runtime deps
1919
# hadolint ignore=DL3008
2020
RUN apt-get update && apt-get install -y --no-install-recommends \
21-
acl \
2221
file \
23-
gettext \
2422
git \
2523
&& rm -rf /var/lib/apt/lists/*
2624

docs/alpine.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,12 @@ To switch to Alpine-based images, apply the following changes to the `Dockerfile
1414

1515
-# hadolint ignore=DL3008
1616
-RUN apt-get update && apt-get install -y --no-install-recommends \
17-
- acl \
1817
- file \
19-
- gettext \
2018
- git \
2119
- && rm -rf /var/lib/apt/lists/*
2220
+# hadolint ignore=DL3018
2321
+RUN apk add --no-cache \
24-
+ acl \
2522
+ file \
26-
+ gettext \
2723
+ git \
2824
+ ;
2925
```

frankenphp/docker-entrypoint.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@ if [ "$1" = 'frankenphp' ] || [ "$1" = 'php' ] || [ "$1" = 'bin/console' ]; then
5757
fi
5858
fi
5959

60-
setfacl -R -m u:www-data:rwX -m u:"$(whoami)":rwX var
61-
setfacl -dR -m u:www-data:rwX -m u:"$(whoami)":rwX var
62-
6360
echo 'PHP app ready!'
6461
fi
6562

0 commit comments

Comments
 (0)