Skip to content

Commit dab1308

Browse files
7-zete-7maxhelias
authored andcommitted
deps: remove unnecessary dependencies
1 parent 84aac83 commit dab1308

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
@@ -16,16 +16,12 @@ To switch to Alpine-based images, apply the following changes to the `Dockerfile
1616

1717
-# hadolint ignore=DL3008
1818
-RUN apt-get update && apt-get install -y --no-install-recommends \
19-
- acl \
2019
- file \
21-
- gettext \
2220
- git \
2321
- && rm -rf /var/lib/apt/lists/*
2422
+# hadolint ignore=DL3018
2523
+RUN apk add --no-cache \
26-
+ acl \
2724
+ file \
28-
+ gettext \
2925
+ git
3026
```
3127

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)