Update Dockerfile.dev for ARM64

This commit is contained in:
Eugene Burmakin
2025-02-05 23:19:50 +01:00
parent 4662e97d06
commit 7579ad75f3

View File

@@ -8,11 +8,13 @@ ENV RAILS_PORT=3000
ENV RAILS_ENV=development
# Install dependencies for application
RUN apt-get update && apt-get install -y \
RUN dpkg --add-architecture arm64 && \
apt-get update && apt-get install -y \
build-essential \
git \
postgresql-client \
libpq-dev \
postgresql-client:arm64 \
libpq-dev:arm64 \
libpq5:arm64 \
libxml2-dev \
libxslt-dev \
nodejs \