Skip to content

Commit

Permalink
Update Dockerfile.dev for ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
Freika committed Feb 5, 2025
1 parent 4662e97 commit 7579ad7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docker/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 7579ad7

Please sign in to comment.