diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2560068..ccbed70 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,4 +14,4 @@ jobs: - name: Build image run: docker build -t back:latest -f docker/dockerfile . - name: Start docker-compose - run: docker-compose -f docker/docker-compose.yaml up -d \ No newline at end of file + run: docker compose -f docker/docker-compose.yaml up -d \ No newline at end of file diff --git a/docker/dockerfile b/docker/dockerfile index f2ae255..5c32c71 100644 --- a/docker/dockerfile +++ b/docker/dockerfile @@ -12,12 +12,6 @@ RUN apt-get update && apt-get install -y \ # g++ \ && rm -rf /var/lib/apt/lists/* - RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg \ - && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" \ - > /etc/apt/sources.list.d/docker.list \ - && apt-get update \ - && apt-get install -y docker-ce-cli docker-compose-plugin - RUN python -m pip install --upgrade pip \ && python -m pip install -r requirements.txt RUN chmod +x ./docker/start.sh