Skip to content

Commit 405278d

Browse files
authored
Merge pull request #513 from grafuls/development
fix: Dockerfile versioning
2 parents c606d4b + 1ac86a7 commit 405278d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN dnf install -y gcc python3-devel
1212
RUN pip install --upgrade pip
1313
RUN pip install --no-cache-dir -r requirements.txt
1414
RUN python -m build
15-
RUN python -m pip install dist/badfish-1.0.7.tar.gz
15+
RUN python -m pip install dist/badfish-*.tar.gz
1616

1717
ENTRYPOINT ["badfish"]
1818
CMD ["-v"]

Dockerfile_dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN dnf install -y gcc python3-devel
1414
RUN pip install --upgrade pip
1515
RUN pip install -r requirements.txt
1616
RUN python -m build
17-
RUN python -m pip install dist/badfish-1.0.7.tar.gz
17+
RUN python -m pip install dist/badfish-*.tar.gz
1818

1919
ENTRYPOINT ["badfish"]
2020
CMD ["-v"]

Dockerfile_local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apk add build-base
1010
RUN pip install --upgrade pip
1111
RUN pip install --no-cache-dir -r requirements.txt
1212
RUN python -m build
13-
RUN python -m pip install dist/badfish-1.0.3.tar.gz
13+
RUN python -m pip install dist/badfish-*.tar.gz
1414

1515
ENTRYPOINT ["badfish"]
1616
CMD ["-v"]

0 commit comments

Comments
 (0)