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 1f1753d commit b846d05Copy full SHA for b846d05
.dockerignore
@@ -1 +1,2 @@
1
.venv
2
+uv.lock
Dockerfile
@@ -5,11 +5,12 @@ FROM python:${PYTHON_VERSION}-slim-bullseye
5
RUN --mount=type=cache,target=~/.cache/pip pip install uv
6
7
WORKDIR /app
8
-COPY pyproject.toml .
+
9
+ENV SETUPTOOLS_SCM_PRETEND_VERSION=0
10
+COPY pyproject.toml README.md ./
11
RUN uv lock
12
13
COPY stompman/__init__.py stompman/__init__.py
-COPY README.md .
14
RUN --mount=type=cache,target=~/.cache/uv uv sync
15
16
COPY . .
0 commit comments