mirror of
https://github.com/nicolabs/nicobot.git
synced 2026-05-21 11:57:34 +02:00
- removing more problematic CPU archs
~ minor enhancements to the Dockerfiles
This commit is contained in:
parent
91be08d2dd
commit
4bbb38b96b
6
.github/workflows/dockerhub.yml
vendored
6
.github/workflows/dockerhub.yml
vendored
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
context: ./
|
||||
file: ./Dockerfile-debian
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
||||
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
tags: |
|
||||
nicolabs/nicobot:debian
|
||||
|
|
@ -63,7 +63,7 @@ jobs:
|
|||
context: ./
|
||||
file: ./Dockerfile-debian-slim
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
tags: |
|
||||
nicolabs/nicobot:debian-slim
|
||||
|
|
@ -80,7 +80,7 @@ jobs:
|
|||
context: ./
|
||||
file: ./Dockerfile-alpine
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
tags: |
|
||||
nicolabs/nicobot:alpine
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ RUN mv "/opt/signal-cli-${SIGNAL_VERSION}" /opt/signal-cli
|
|||
# - Python version > 3.4.2
|
||||
# - bash
|
||||
# - glibc
|
||||
# Python version > 3.4.2
|
||||
FROM python:3
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ WORKDIR /usr/src/app
|
|||
|
||||
# Or else we get the following error installing the jre :
|
||||
# update-alternatives: error: error creating symbolic link '/usr/share/man/man1/rmid.1.gz.dpkg-tmp': No such file or directory
|
||||
RUN mkdir /usr/share/man/man1 /usr/share/man/man7
|
||||
RUN mkdir -p /usr/share/man/man1 /usr/share/man/man7
|
||||
|
||||
RUN apt-get update && \
|
||||
apt install -y cmake g++ make \
|
||||
|
|
|
|||
Loading…
Reference in a new issue