Skip to content

Commit c175201

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

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ 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 \
22-
file \
23-
gettext \
2421
git \
2522
&& rm -rf /var/lib/apt/lists/*
2623

docs/alpine.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,10 @@ 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 \
18-
- file \
19-
- gettext \
2017
- git \
2118
- && rm -rf /var/lib/apt/lists/*
2219
+# hadolint ignore=DL3018
2320
+RUN apk add --no-cache \
24-
+ acl \
25-
+ file \
26-
+ gettext \
2721
+ git \
2822
+ ;
2923
```

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)