Skip to content

Commit

Permalink
docker: always install packages for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Mar 29, 2023
1 parent 3d06892 commit a20cc5c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ RUN apt-get -y install \
# which causes weird behavior in python which looks at the arch version
# which still reports 64bit, even if running in 32bit docker.
# this scenario is not supported and will be reported at runtime.
RUN if [ "$(uname -m)" = "armv7l" ]; \
RUN if [ "$(uname -m)" != "x86_64" ]; \
then \
apt-get -y install \
python3-matplotlib \
Expand Down Expand Up @@ -95,7 +95,7 @@ ENV SCRYPTED_INSTALL_PATH="/server"

# changing this forces pip and npm to perform reinstalls.
# if this base image changes, this version must be updated.
ENV SCRYPTED_BASE_VERSION=20230322
ENV SCRYPTED_BASE_VERSION=20230329

################################################################
# End section generated from template/Dockerfile.full.footer
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.lite
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ ENV SCRYPTED_INSTALL_PATH="/server"

# changing this forces pip and npm to perform reinstalls.
# if this base image changes, this version must be updated.
ENV SCRYPTED_BASE_VERSION=20230322
ENV SCRYPTED_BASE_VERSION=20230329
2 changes: 1 addition & 1 deletion docker/Dockerfile.thin
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ ENV SCRYPTED_INSTALL_PATH="/server"

# changing this forces pip and npm to perform reinstalls.
# if this base image changes, this version must be updated.
ENV SCRYPTED_BASE_VERSION=20230322
ENV SCRYPTED_BASE_VERSION=20230329
2 changes: 1 addition & 1 deletion docker/template/Dockerfile.full.footer
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV SCRYPTED_INSTALL_PATH="/server"

# changing this forces pip and npm to perform reinstalls.
# if this base image changes, this version must be updated.
ENV SCRYPTED_BASE_VERSION=20230322
ENV SCRYPTED_BASE_VERSION=20230329

################################################################
# End section generated from template/Dockerfile.full.footer
Expand Down
2 changes: 1 addition & 1 deletion docker/template/Dockerfile.full.header
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN apt-get -y install \
# which causes weird behavior in python which looks at the arch version
# which still reports 64bit, even if running in 32bit docker.
# this scenario is not supported and will be reported at runtime.
RUN if [ "$(uname -m)" = "armv7l" ]; \
RUN if [ "$(uname -m)" != "x86_64" ]; \
then \
apt-get -y install \
python3-matplotlib \
Expand Down

0 comments on commit a20cc5c

Please sign in to comment.