aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile.tools
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-07-27 19:02:32 +0900
committernsfisis <nsfisis@gmail.com>2024-07-27 19:02:32 +0900
commit7cbf34204233df7c7e9e4b24998e25dbd8d2a423 (patch)
tree848da44374c48edec603fb014c59ad0fbb9307e6 /Dockerfile.tools
parent18308a22879dc9143a03bcbe53cf0c5e8e49ee1f (diff)
downloadiosdc-japan-2024-albatross-7cbf34204233df7c7e9e4b24998e25dbd8d2a423.tar.gz
iosdc-japan-2024-albatross-7cbf34204233df7c7e9e4b24998e25dbd8d2a423.tar.zst
iosdc-japan-2024-albatross-7cbf34204233df7c7e9e4b24998e25dbd8d2a423.zip
organize dockerfiles and compose.yaml
Diffstat (limited to 'Dockerfile.tools')
-rw-r--r--Dockerfile.tools13
1 files changed, 0 insertions, 13 deletions
diff --git a/Dockerfile.tools b/Dockerfile.tools
deleted file mode 100644
index de025b8..0000000
--- a/Dockerfile.tools
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM golang:1.22.3
-
-WORKDIR /tools
-
-RUN wget -O psqldef.tar.gz https://github.com/sqldef/sqldef/releases/download/v0.17.14/psqldef_linux_amd64.tar.gz
-
-RUN tar -xzf psqldef.tar.gz && \
- rm -f psqldef.tar.gz
-
-RUN touch /usr/local/bin/psqldef && \
- echo '#!/bin/sh' >> /usr/local/bin/psqldef && \
- echo '/tools/psqldef --user="$POSTGRES_USER" --password="$POSTGRES_PASSWORD" --host=db "$POSTGRES_DB" "$@"' >> /usr/local/bin/psqldef && \
- chmod +x /usr/local/bin/psqldef