We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87c62f4 commit 1ec2d03Copy full SHA for 1ec2d03
container.def
@@ -2,7 +2,7 @@ Bootstrap: docker
2
From: ubuntu:24.04
3
4
%files
5
- requirements.txt /tmp/requirements.txt
+ requirements.txt /opt/requirements.txt
6
package.json /opt/node/package.json
7
package-lock.json /opt/node/package-lock.json
8
@@ -48,8 +48,8 @@ From: ubuntu:24.04
48
49
# Create Python virtual environment and install packages
50
/usr/bin/python3 -m venv /opt/venv
51
- /opt/venv/bin/pip install -r /tmp/requirements.txt
52
- rm /tmp/requirements.txt
+ /opt/venv/bin/pip install -r /opt/requirements.txt
+ rm /opt/requirements.txt
53
54
# Install npm packages globally in the container
55
cd /opt/node
0 commit comments