I am almost new to all of this so please excuse my lack of knowledge. I work in Ubuntu with Visual Studio Code and Dev Containers extension to build a docker image of my repository and mount it in a remote container, and develope inside of it. I use for it both a dockerfile
and a devcontainer.json
files for the settings.
Let's say some member of my new team doesn't want to use vscode and prefers to work through the console. What would be the best approach? Can the remote container be mounted (with devcontainer.json settings) through the console without vscode?
I've tried migrating some of the settings from devcontainer.json
to dockerfile
(so that the COPY requirements.txt
doesn't fail because of paths conflicts when not reading "context": ".."
in devcontainer.json
, for example) but I still have problems with the working directory, and so on. The goal is that both types of users use the same files for the settings and that it works both in vscode and in the console.
Thanks in advance.