×


Activate python virtualenv in Dockerfile - How to perform it ?

Are you trying to activate python virtualenv in Dockerfile?

Here is the guide!

To package Python application in a Docker image, we often use virtualenv.

To use virtualenv, we need to activate it.
virtualenv is used for dependency isolation. You want to prevent any dependencies or packages installed from leaking between applications. Docker achieves the same thing, it isolates your dependencies within your container and prevent leaks between containers and between applications.
Here at Ibmi Media, as part of our Server Management Services, we regularly help our Customers to perform related Docker queries.
In this context, we shall look into an effective method to activate python virtualenv in Dockerfile.

How to Activate python virtualenv in Dockerfile ?

We don't have to use virtualenv inside a Docker Container.
Our goal is to prevent any dependencies or packages installed from leaking between applications. Docker achieves this.
Therefore, unless we run multiple apps in the same container, we don’t need to use virtualenv inside a Docker Container
For this to work, we need to architect our app in a better way and split them up into multiple containers.
The general solution is to blindly convert a shell script into a Dockerfile.

The output will look right.
However, it is actually broken:

FROM python:3.8-slim-buster
RUN python3 -m venv /opt/venv

# This is wrong!
RUN . /opt/venv/bin/activate

# Install dependencies:
COPY requirements.txt .
RUN pip install -r requirements.txt

# Run the application:
COPY myapp.py .
CMD [“python”, "myapp.py"]

Another method is to explicitly use the path to the binaries in the virtualenv.

In more complex situations, we need to repeat it.

However, repetition is a source of error.
As we add more calls to Python programs, it can to forget to add the /opt/venv/bin/ prefix.
However, in most cases it might work:

FROM python:3.8-slim-buster
RUN python3 -m venv /opt/venv
# Install dependencies:
COPY requirements.txt .
RUN /opt/venv/bin/pip install -r requirements.txt

# Run the application:
COPY myapp.py .
CMD [“/opt/venv/bin/python”, “myapp.py”]

The problem here is that if any Python process launches a sub-process, it will not run in the virtualenv.
The most recommended solution however, is to activate the virtualenv separately for each RUN as well as the CMD:

FROM python:3.8-slim-buster

RUN python3 -m venv /opt/venv

# Install dependencies:
COPY requirements.txt .
RUN . /opt/venv/bin/activate && pip install -r requirements.txt

# Run the application:
COPY myapp.py .
CMD . /opt/venv/bin/activate && exec python myapp.py
(The exec is there to get correct signal handling.)


What activating python virtualenv in Dockerfile does?

We can see that activation does a number of things, including:
1. Figures out what shell we are running.
2. Adds a deactivate function to our shell and messes around with pydoc.
3. Changes the shell prompt to include the virtualenv name.
4. Do not set the PYTHONHOME environment variable, if someone happened to set it.
5. Sets two environment variables: VIRTUAL_ENV and PATH.

Most of it irrelevant to Docker usage. However, some tools, for instance, the poetry packaging tool use it to detect whether we run inside virtualenv.
Ssetting PATH is an important task. It is a list of directories for commands to run. “activate” simply adds the virtualenv's bin/ directory to the start of the list.
We can replace activate by setting the appropriate environment variables.
Our output will be the following Dockerfile:

FROM python:3.8-slim-buster

ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH=”$VIRTUAL_ENV/bin:$PATH”

# Install dependencies:
COPY requirements.txt .
RUN pip install -r requirements.txt

# Run the application:
COPY myapp.py .
CMD [“python”, “myapp.py”]

The virtualenv will now wrok for both RUN and CMD, without any repetition or need to remember anything.

[Having issues with Activating python virtualenv in Dockerfile?  We'd be happy to assist. ]


Conclusion

This article covers how to Activate python virtualenv in Dockerfile.

Basically, to package Python application in a Docker image, we often use virtualenv. However, to use virtualenv, we need to activate it.
Therefore, there is no point in using virtualenv inside a Docker Container unless you are running multiple apps in the same container, if that's the case I'd say that you're doing something wrong and the solution would be to architect your app in a better way and split them up in multiple containers.

There are perfectly valid reasons for using a virtualenv within a container.
You don't necessarily need to activate the virtualenv to install software or use it.
Try invoking the executables directly from the virtualenv's bin directory instead:

FROM python:2.7
RUN virtualenv /ve
RUN /ve/bin/pip install somepackage
CMD ["/ve/bin/python", "yourcode.py"]


One solution is to explicitly use the path to the binaries in the virtualenv.

In this case we only have two repetitions, but in more complex situations you’ll need to do it over and over again.
Besides the lack of readability, repetition is a source of error.
As you add more calls to Python programs, it's easy to forget to add the magic /opt/venv/bin/ prefix.
It will (mostly) work though:
FROM python:3.8-slim-buster
RUN python3 -m venv /opt/venv
# Install dependencies:
COPY requirements.txt .
RUN /opt/venv/bin/pip install -r requirements.txt
# Run the application:
COPY myapp.py .
CMD ["/opt/venv/bin/python", "myapp.py"]
The only caveat is that if any Python process launches a sub-process, that sub-process will not run in the virtualenv.