File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ ENV LANGUAGE ${LANG_WHICH}_${LANG_WHERE}.${ENCODING}
25
25
ENV LANG ${LANGUAGE}
26
26
# Layer size: small: ~9 MB
27
27
# Layer size: small: ~9 MB MB (with --no-install-recommends)
28
- RUN apt -qqy update \
29
- && apt -qqy --no-install-recommends install \
28
+ RUN apt-get -qqy update \
29
+ && apt-get -qqy --no-install-recommends install \
30
30
language-pack-en \
31
31
tzdata \
32
32
locales \
33
33
&& locale-gen ${LANGUAGE} \
34
34
&& dpkg-reconfigure --frontend noninteractive locales \
35
- && apt -qyy autoremove \
35
+ && apt-get -qyy autoremove \
36
36
&& rm -rf /var/lib/apt/lists/* \
37
- && apt -qyy clean
37
+ && apt-get -qyy clean
38
38
39
39
# ================
40
40
# Font libraries
@@ -56,8 +56,8 @@ RUN apt -qqy update \
56
56
# https://github.com/SeleniumHQ/docker-selenium/issues/383#issuecomment-278367069
57
57
# Layer size: small: 36.28 MB (with --no-install-recommends)
58
58
# Layer size: small: 36.28 MB
59
- RUN apt -qqy update \
60
- && apt -qqy --no-install-recommends install \
59
+ RUN apt-get -qqy update \
60
+ && apt-get -qqy --no-install-recommends install \
61
61
libfontconfig \
62
62
libfreetype6 \
63
63
xfonts-cyrillic \
@@ -68,7 +68,7 @@ RUN apt -qqy update \
68
68
fonts-tlwg-loma-otf \
69
69
ttf-ubuntu-font-family \
70
70
&& rm -rf /var/lib/apt/lists/* \
71
- && apt -qyy clean
71
+ && apt-get -qyy clean
72
72
73
73
# ===================================================
74
74
# Run the following commands as non-privileged user
Original file line number Diff line number Diff line change @@ -18,16 +18,16 @@ ENV LANGUAGE ${LANG_WHICH}_${LANG_WHERE}.${ENCODING}
18
18
ENV LANG ${LANGUAGE}
19
19
# Layer size: small: ~9 MB
20
20
# Layer size: small: ~9 MB MB (with --no-install-recommends)
21
- RUN apt -qqy update \
22
- && apt -qqy --no-install-recommends install \
21
+ RUN apt-get -qqy update \
22
+ && apt-get -qqy --no-install-recommends install \
23
23
language-pack-en \
24
24
tzdata \
25
25
locales \
26
26
&& locale-gen ${LANGUAGE} \
27
27
&& dpkg-reconfigure --frontend noninteractive locales \
28
- && apt -qyy autoremove \
28
+ && apt-get -qyy autoremove \
29
29
&& rm -rf /var/lib/apt/lists/* \
30
- && apt -qyy clean
30
+ && apt-get -qyy clean
31
31
32
32
#================
33
33
# Font libraries
@@ -49,8 +49,8 @@ RUN apt -qqy update \
49
49
# https://github.com/SeleniumHQ/docker-selenium/issues/383#issuecomment-278367069
50
50
# Layer size: small: 36.28 MB (with --no-install-recommends)
51
51
# Layer size: small: 36.28 MB
52
- RUN apt -qqy update \
53
- && apt -qqy --no-install-recommends install \
52
+ RUN apt-get -qqy update \
53
+ && apt-get -qqy --no-install-recommends install \
54
54
libfontconfig \
55
55
libfreetype6 \
56
56
xfonts-cyrillic \
@@ -61,7 +61,7 @@ RUN apt -qqy update \
61
61
fonts-tlwg-loma-otf \
62
62
ttf-ubuntu-font-family \
63
63
&& rm -rf /var/lib/apt/lists/* \
64
- && apt -qyy clean
64
+ && apt-get -qyy clean
65
65
66
66
#===================================================
67
67
# Run the following commands as non-privileged user
You can’t perform that action at this time.
0 commit comments