Skip to content

Commit

Permalink
Merge pull request #698 from Project-MONAI/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
neildsouth authored Mar 24, 2023
2 parents 0df8db8 + 2396c38 commit de15e29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/.gitversion.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

next-version: 0.2.0
next-version: 0.1.2
assembly-versioning-scheme: MajorMinorPatchTag
mode: ContinuousDelivery
branches:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
if: ${{ !contains(github.ref, 'refs/heads/main') }}
id: meta
uses: docker/[email protected]
with:
Expand Down
6 changes: 4 additions & 2 deletions CallbackApp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM python:3.10-slim-buster
FROM python:3.10-alpine

RUN apk update && apk upgrade
RUN apk add libcom_err=1.46.6-r0
WORKDIR /app
COPY src/TaskManager/CallbackApp/app.py ./
COPY src/TaskManager/CallbackApp/requirements.txt ./

RUN pip install -r requirements.txt

CMD ["/app/app.py"]
CMD ["/usr/local/bin/python3", "/app/app.py"]

0 comments on commit de15e29

Please sign in to comment.