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 a6385a4 commit 21f1d1bCopy full SHA for 21f1d1b
Dockerfile
@@ -4,14 +4,11 @@ RUN apt-get update && apt-get install -y make
4
5
WORKDIR /sdk
6
7
-COPY requirements.txt requirements-dev.txt vars.mk Makefile ./
+COPY Makefile pyproject.toml requirements.txt requirements-dev.txt vars.mk ./
8
9
-RUN make deps
+RUN --mount=type=cache,mode=0755,target=/root/.cache/pip make deps
10
11
-COPY .git ./.git
12
-COPY src ./src
13
-COPY pyproject.toml ./
+COPY .git .git
+COPY src src
14
15
-RUN make build
16
-
17
-RUN make install
+RUN --mount=type=cache,mode=0755,target=/root/.cache/pip make dev
requirements-dev.txt
@@ -5,8 +5,8 @@ pandas
pre-commit
pyjson5
pytest
-rsconnect
responses
+rsconnect-python
ruff
setuptools
setuptools-scm
0 commit comments