diff --git a/podman/deploy.py b/podman/deploy.py index ee22f96..f7a83e3 100755 --- a/podman/deploy.py +++ b/podman/deploy.py @@ -204,7 +204,7 @@ def main(): # Start building from a base image "buildah from --pull --name builder docker.io/library/python:3.10-slim", # Install Python requirements in the container - f"buildah copy builder {requirements_file} /root/requirements.txt" + f"buildah copy builder {requirements_file} /root/requirements.txt", "buildah run builder -- pip3 install -r /root/requirements.txt", "buildah run builder -- rm /root/requirements.txt", # Set the working directory of the container