Skip to content

Commit b48efc1

Browse files
Merge pull request #28 from pescheckit/hotfix_fixed-issue-with-docker-versions
Fixed versions
2 parents e029446 + 5327c4f commit b48efc1

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.dockerignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Git
2-
.git
1+
# Git (keep .git for version detection)
32
.gitignore
43
.github
54

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ jobs:
174174
175175
- name: Build package
176176
if: matrix.python-version == '3.11'
177-
run: python -m build
177+
run: |
178+
python -m build
178179
179180
- name: Publish package
180181
if: matrix.python-version == '3.11'

Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ RUN pip install --no-cache-dir -r requirements.txt
1616
# Copy source code for installation
1717
COPY . .
1818

19-
# Use setuptools_scm with the version passed from the build
20-
ENV SETUPTOOLS_SCM_PRETEND_VERSION=$VERSION
21-
2219
# Install the package
2320
RUN pip install --no-cache-dir .
2421

0 commit comments

Comments
 (0)