mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
8 lines
164 B
Text
8 lines
164 B
Text
FROM ubuntu:18.04
|
|
|
|
RUN ["apt-get", "update", "-y"]
|
|
RUN ["apt-get", "install", "-y", "postgresql-client", "curl", "netcat"]
|
|
|
|
ADD wait.sh /wait
|
|
|
|
ENTRYPOINT ["/wait"]
|