diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..b090bf637 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +venv/ +gui/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index ffa47f9ea..e70249fa1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,4 @@ COPY entrypoint.sh ./entrypoint.sh RUN chmod +x ./entrypoint.sh # ENTRYPOINT ["./entrypoint.sh"] -CMD ["sh", "-c", "./entrypoint.sh"] \ No newline at end of file +CMD ["sh","./entrypoint.sh"] \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh index 290101215..d3c8581f5 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,4 +1,4 @@ -# Run Alembic migration +# Run Alembic migrations alembic upgrade head # Start the app