mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 11:23:13 +00:00
revert: add back cargo and rust, drop LE
This commit is contained in:
parent
0ca7f5d8fc
commit
b51950d60c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/docker-build.yml
vendored
2
.github/workflows/docker-build.yml
vendored
|
@ -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
|
||||||
|
|
|
@ -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/
|
||||||
|
|
Loading…
Reference in a new issue