Skip to content

Commit

Permalink
deps: use zlib1g-dev instead of lib32z-dev
Browse files Browse the repository at this point in the history
fix: use debian stable (currently bookworm) slim image for rust toolchain
  • Loading branch information
saibatizoku committed Aug 14, 2023
1 parent 46e1a7b commit c9edd1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ VERSION 0.7
FROM debian:stable-slim

rust-toolchain:
FROM rust:1.71.0-slim-bullseye
FROM rust:1.71.0-slim-bookworm

# Installs Cargo chef
install-chef:
Expand Down
2 changes: 1 addition & 1 deletion services/voting-node/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ docker:

# Install voting-node system dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends libpq5 openssh-client
apt-get install -y --no-install-recommends libpq5 openssh-client build-essential libxml2-dev libxslt-dev zlib1g-dev python3-lxml

## apt cleanup
RUN apt-get clean && \
Expand Down
2 changes: 1 addition & 1 deletion utilities/ideascale-importer/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build:

# Install system dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends curl build-essential libxml2-dev libxslt-dev lib32z1-dev python3-lxml
apt-get install -y --no-install-recommends curl build-essential libxml2-dev libxslt-dev zlib1g-dev python3-lxml

# Install Poetry
RUN curl -sSL https://install.python-poetry.org | python3 -
Expand Down

0 comments on commit c9edd1c

Please sign in to comment.