mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
Fix command
This commit is contained in:
parent
128d9ac207
commit
80bbfadb04
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ def main():
|
||||||
# Start building from a base image
|
# Start building from a base image
|
||||||
"buildah from --pull --name builder docker.io/library/python:3.10-slim",
|
"buildah from --pull --name builder docker.io/library/python:3.10-slim",
|
||||||
# Install Python requirements in the container
|
# 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 -- pip3 install -r /root/requirements.txt",
|
||||||
"buildah run builder -- rm /root/requirements.txt",
|
"buildah run builder -- rm /root/requirements.txt",
|
||||||
# Set the working directory of the container
|
# Set the working directory of the container
|
||||||
|
|
Loading…
Reference in a new issue