Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit b0426ce

Browse files
committed
fix .dockerignore, build options
1 parent 964446a commit b0426ce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.dockerignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@ dist/
44
.tox
55
.venv*
66
venv*
7-
.devcontainer.json
87
.pre-commit-config.yaml
98
.vscode
10-
README.rst

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,6 @@ target/
6464
.venv*
6565
venv*
6666

67+
# further build artifacts
68+
lockfiles/
6769

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ WORKDIR /project
2222
# make the wheel outside of the venv so 'build' does not dirty requirements.txt
2323
RUN pip install --upgrade pip build && \
2424
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct) && \
25-
python -m build --sdist --wheel && \
25+
python -m build && \
2626
touch requirements.txt
2727

2828
# set up a virtual environment and put it in PATH

0 commit comments

Comments
 (0)