jwills / buenavista

A Postgres Proxy Server in Python
Apache License 2.0
201 stars 20 forks source link

Docker File Typo #6

Closed TylerHillery closed 1 year ago

TylerHillery commented 1 year ago

I was having an issue with running the buenavista docker image because the "buneavista.backend" module did not exist. Looks like this is because of recent a commit jwills@8d7855250132a549f117d82244c57450aa693013 renaming the backend module to backends.

After I changed the CMD in the docker file from python -m buenavista.backend.duckdb to python -m buenavista.backends.duckdb everything worked.

I will open up a PR with the fix.

jwills commented 1 year ago

ack, thanks Tyler!