revert: add back cargo and rust, drop LE

This commit is contained in:
Naramsim 2024-05-04 23:02:06 +02:00
parent 0ca7f5d8fc
commit b51950d60c
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ jobs:
context: . context: .
file: ./Resources/docker/app/Dockerfile file: ./Resources/docker/app/Dockerfile
push: false push: false
platforms: local,linux/amd64,linux/arm64,linux/ppc64le,linux/arm/v7 platforms: local,linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
- name: Image digest - name: Image digest

View file

@ -9,7 +9,7 @@ WORKDIR /code
ADD requirements.txt /code/ ADD requirements.txt /code/
RUN apk add --no-cache postgresql-libs libstdc++ RUN apk add --no-cache postgresql-libs libstdc++
RUN apk add --no-cache --virtual .build-deps gcc g++ musl-dev \ RUN apk add --no-cache --virtual .build-deps gcc g++ musl-dev \
postgresql-dev && \ postgresql-dev rust cargo && \
python3 -m pip install -r requirements.txt --no-cache-dir && \ python3 -m pip install -r requirements.txt --no-cache-dir && \
apk --purge del .build-deps apk --purge del .build-deps
ADD . /code/ ADD . /code/