Skip to content

Commit de15e29

Browse files
authored
Merge pull request #698 from Project-MONAI/main
Main
2 parents 0df8db8 + 2396c38 commit de15e29

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/.gitversion.yml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
next-version: 0.2.0
15+
next-version: 0.1.2
1616
assembly-versioning-scheme: MajorMinorPatchTag
1717
mode: ContinuousDelivery
1818
branches:

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ jobs:
7272
password: ${{ secrets.GITHUB_TOKEN }}
7373

7474
- name: Extract metadata (tags, labels) for Docker
75-
if: ${{ !contains(github.ref, 'refs/heads/main') }}
7675
id: meta
7776
uses: docker/metadata-action@v4.3.0
7877
with:

CallbackApp.Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@
99
# See the License for the specific language governing permissions and
1010
# limitations under the License.
1111

12-
FROM python:3.10-slim-buster
12+
FROM python:3.10-alpine
1313

14+
RUN apk update && apk upgrade
15+
RUN apk add libcom_err=1.46.6-r0
1416
WORKDIR /app
1517
COPY src/TaskManager/CallbackApp/app.py ./
1618
COPY src/TaskManager/CallbackApp/requirements.txt ./
1719

1820
RUN pip install -r requirements.txt
1921

20-
CMD ["/app/app.py"]
22+
CMD ["/usr/local/bin/python3", "/app/app.py"]

0 commit comments

Comments
 (0)