File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 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
8787# Config files
8888COPY config/ /etc/mysql/
8989COPY docker-entrypoint.sh /usr/local/bin/
90- {{ if [ "8.0" ] | index(env.version) then ( -}}
90+ {{ if env.version == "8.0" then ( -}}
9191RUN ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
9292{{ ) else "" end -}}
9393ENTRYPOINT ["docker-entrypoint.sh"]
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ RUN set -eux; \
132132VOLUME /var/lib/mysql
133133
134134COPY docker-entrypoint.sh /usr/local/bin/
135- {{ if [ "8.0" ] | index(env.version) then ( -}}
135+ {{ if env.version == "8.0" then ( -}}
136136RUN ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
137137{{ ) else "" end -}}
138138ENTRYPOINT ["docker-entrypoint.sh"]
You can’t perform that action at this time.
0 commit comments