diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c129135..a1ae821 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index b379ce2..0107be0 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index 6cac045..703d8f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine as base +FROM python:3.11-alpine as base FROM base as builder RUN apk add build-base RUN apk update @@ -13,4 +13,4 @@ COPY agent /app/agent COPY ostorlab.yaml /app/agent/ostorlab.yaml WORKDIR /app ENV PYTHONPATH=/app -CMD ["python3", "/app/agent/tracker_agent.py"] +CMD ["python3.11", "/app/agent/tracker_agent.py"] diff --git a/ostorlab.yaml b/ostorlab.yaml index 6374086..d43969f 100644 --- a/ostorlab.yaml +++ b/ostorlab.yaml @@ -1,6 +1,6 @@ kind: Agent name: tracker -version: 0.1.5 +version: 0.1.6 description: | This repository is an implementation of the default tracker agent. Tracker is a default agent needed to run a scan using the local runtime.