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 ce7d2c7 commit fdecc3dCopy full SHA for fdecc3d
Dockerfile
@@ -3,4 +3,5 @@ FROM ${BASE_IMAGE}
3
4
WORKDIR /rsconnect
5
COPY scripts/build-image build-image
6
+COPY requirements.txt .
7
RUN bash build-image && rm -vf build-image
scripts/build-image
@@ -8,4 +8,4 @@ set -o xtrace
8
exit 1
9
}
10
python -m pip install --upgrade pip
11
-pip install '.[test]'
+pip install -r requirements.txt
0 commit comments