Gabriel Knepper Mendes
Gabriel Knepper Mendes
I created a PoC using electron-builder. https://github.com/gknepper/Electron-CyberChef Has precompiled packages for Linux and Mac at this time. https://github.com/gknepper/Electron-CyberChef/releases
The only way for now is actually update the image. I did that, that's my Dockerfile: For chrome it's working.. for Firefox I'm copying a profile already created with the...
That's the exactly main problem on firefox. When creating the profile on command line, firefox don't create the wallet (cert9.db) so as a workaround I was trying to start firefox...
Well, I think this is doable but I don't compress the profile all this 50 files and all this structure in a tar.gz or a zip file ? The other...
Hello @chrismcmahon, No I'm not cloning the project. I don't need to. I'm reusing the previous working image as you may check in the first line: (FROM elgalu/selenium). So I'm...
@chrismcmahon Yes!
I would say, first start expanding your 'ffprofile.tar.gz' should have way more then just the cert9.db... Second.. in your ubuntu machine, delete the .mozilla in your home directory and expand...
Did you define a name for your image when you ran the build "docker build -t new_image ." ? Check with the command "docker image" all images that you may...
Check the steps 3 and 4 on this tutorial. https://www.howtoforge.com/tutorial/how-to-create-docker-images-with-dockerfile/
Create your image again with this Docker file... and yes definitely it's a problem on your ffprofile.tar.gz, mostly permission. FROM elgalu/selenium USER root ADD ffprofile.tar.gz /home/seluser/ **RUN chown -R seluser:...