Hi @Uber_IA !
In order to change the taiga-back image, what you’re doing should work, and I guess it’s working.
In order to change the taiga-front image, you need to do more steps. If you check the Dockerfile
for the front image, you see this line:
wget https://github.com/kaleidos-ventures/taiga-front-dist/archive/6.7.1.zip -O source.zip; \
Currently, we’re generating a .zip with the compiled sources and download during the build stage. So, you should change the Dockerfile
to make your new code get there. There are different ways:
- multistage dockerfile. First step compiles your code and second step uses it instead of using the official
- compile your modified code locally and copy it to the Dockefile.
In both cases you should remove the wget
command as it downloads a version that you don’t want.
Hope this helps, cheers!