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 877e080 commit dcc8578Copy full SHA for dcc8578
Dockerfile
@@ -1,10 +1,7 @@
1
FROM python:3
2
3
-COPY requirements.txt /
+RUN pip install -U pip && pip install changerelease==1.0.0
4
5
-RUN pip install -U pip && pip install -r requirements.txt
6
-
7
-COPY changerelease /changerelease
8
COPY entrypoint.sh /
9
10
ENTRYPOINT [ "/entrypoint.sh" ]
entrypoint.sh
@@ -1,2 +1,2 @@
#!/bin/sh -ex
-python3 -m changerelease sync $@
+changerelease sync $@
requirements.txt
scripts/release
@@ -2,4 +2,5 @@
poetry build
poetry publish
echo "Git tag and push this version"
+echo "And change the version in Dockerfile"
echo "And the v1 tag should be moved?"
0 commit comments