Brayan Andrés Sanjuan Guerrero

Results 6 comments of Brayan Andrés Sanjuan Guerrero

I have the same error when install a venv, docker show this log: error walking file system: FileNotFoundError [Errno 2] No such file or directory: '/app/venv/bin/python'

Add lines just after `apt-get` and error persists. ![code](https://user-images.githubusercontent.com/34760958/122630244-fedd2400-d087-11eb-9560-86849b0f2180.png)

I realized that i can work without problem but `.dockerignore` doesn't works well ![code2](https://user-images.githubusercontent.com/34760958/122662700-a4f95e80-d15a-11eb-8734-eb4728f064fd.png) ![Screen Shot 2021-06-20 at 0 01 07](https://user-images.githubusercontent.com/34760958/122662701-a88ce580-d15a-11eb-915f-3700e301c5c3.png)

> > Add lines just after `apt-get` and error persists. > > ![code](https://user-images.githubusercontent.com/34760958/122630244-fedd2400-d087-11eb-9560-86849b0f2180.png) > > > > @bryanus1 Did you rebuild your containers (which is required for the symlinks to...

@jmoppel `venv/bin/python` has symlink to python in my local machine and not into container, that's is problem. How I resolve it?

> I had the same problem, here is how I solved it. > > In a docker container there is no need to create a virtual environment, since docker _is_...