File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ VOLUME /var/lib/mysql
87
87
# Config files
88
88
COPY config/ /etc/mysql/
89
89
COPY docker-entrypoint.sh /usr/local/bin/
90
- {{ if [ "8.0" ] | index(env.version) then ( -}}
90
+ {{ if env.version == "8.0" then ( -}}
91
91
RUN ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
92
92
{{ ) else "" end -}}
93
93
ENTRYPOINT ["docker-entrypoint.sh"]
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ RUN set -eux; \
132
132
VOLUME /var/lib/mysql
133
133
134
134
COPY docker-entrypoint.sh /usr/local/bin/
135
- {{ if [ "8.0" ] | index(env.version) then ( -}}
135
+ {{ if env.version == "8.0" then ( -}}
136
136
RUN ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
137
137
{{ ) else "" end -}}
138
138
ENTRYPOINT ["docker-entrypoint.sh"]
You can’t perform that action at this time.
0 commit comments