Skip to content

Commit 8d431f7

Browse files
committed
Added experimental support for linux/arm64
1 parent 855a466 commit 8d431f7

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 3.0.0 (unreleased)
22

33
- Updated Blazer to 3.0.0
4+
- Added experimental support for `linux/arm64`
45

56
## 2.6.5 (2022-08-31)
67

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ WORKDIR $INSTALL_PATH
1313

1414
COPY . .
1515

16-
RUN apk add --update build-base git libpq-dev mariadb-dev sqlite-dev libpq mariadb-connector-c sqlite-libs unixodbc && \
16+
RUN apk add --update build-base gcompat git libpq-dev mariadb-dev libpq mariadb-connector-c unixodbc && \
1717
gem install bundler && \
1818
bundle install && \
1919
bundle binstubs --all && \
2020
bundle exec rake assets:precompile && \
21-
apk del build-base git libpq-dev mariadb-dev sqlite-dev && \
21+
apk del build-base git libpq-dev mariadb-dev && \
2222
rm -rf /var/cache/apk/*
2323

2424
ENV PORT 8080

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ gem "pg"
2626
gem "presto-client"
2727
gem "restforce"
2828
# gem "odbc_adapter" # TODO add snowflake driver
29-
gem "sqlite3"
29+
# gem "sqlite3"
3030
# gem "tiny_tds"
3131
# gem "activerecord-sqlserver-adapter"
3232

Gemfile.lock

-3
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,6 @@ GEM
279279
actionpack (>= 5.2)
280280
activesupport (>= 5.2)
281281
sprockets (>= 3.0.0)
282-
sqlite3 (1.6.6)
283-
mini_portile2 (~> 2.8.0)
284282
thor (1.2.2)
285283
thrift (0.19.0)
286284
timeout (0.4.0)
@@ -323,7 +321,6 @@ DEPENDENCIES
323321
rails (~> 7.0.0)
324322
restforce
325323
sprockets-rails
326-
sqlite3
327324
trend
328325
tzinfo-data
329326

0 commit comments

Comments
 (0)