We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9dd67 commit e4a1569Copy full SHA for e4a1569
Dockerfile
@@ -1,8 +1,10 @@
1
FROM alpine:3.20
2
3
-COPY sql2er-exe /app/sql2er
+COPY ./sql2er-exe /app/sql2er
4
5
-RUN apk add libc6-compat gmp-dev
+RUN apk update && \
6
+ apk add --no-cache libc6-compat \
7
+ && apk add --no-cache gmp-dev
8
9
WORKDIR /app
10
Makefile
@@ -0,0 +1,4 @@
+build-docker-image:
+ - cp $(stack path --local-install-root)/bin/sql2er-exe .
+ - docker build --no-cache . -t tusharknight8/sql2er
+ - rm ./sql2er-exe
example/erd.svg
example/test.sql
@@ -4,7 +4,7 @@ CREATE TABLE orders (
order_id bigint not null,
cust_id bigint not null,
status text
-) PARTITION BY HASH (order_id);
+);
CREATE TABLE cities (
city_id bigserial not null,
0 commit comments