fix: remove not needed port patching

This commit is contained in:
Jan 2025-06-22 18:52:54 +02:00 committed by GitHub
parent 2c51b9400d
commit 05b3458be8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,4 +8,4 @@ COPY build/web /usr/share/nginx/html
RUN echo '{"baseUrl": "${BASE_URL}"}' > /usr/share/nginx/html/assets/config/config.json
CMD /bin/sh -c 'sed -i s/80/8080/g /etc/nginx/conf.d/default.conf && sed -i "s|\${BASE_URL}|${BASE_URL}|g" /usr/share/nginx/html/assets/config/config.json && nginx -g "daemon off;"'
CMD /bin/sh -c 'sed -i "s|\${BASE_URL}|${BASE_URL}|g" /usr/share/nginx/html/assets/config/config.json && nginx -g "daemon off;"'