This commit is contained in:
jpducky
2023-06-13 12:33:58 -05:00
parent 9bc74586ba
commit 8bec4f0803
4 changed files with 4 additions and 5 deletions
-1
View File
@@ -1,7 +1,6 @@
.idea
**/.env
**/.venv
config.yaml
__pycache__
superagi/models/__pycache__
superagi/controllers/__pycache__
+4 -4
View File
@@ -4,8 +4,8 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
COPY config.yaml ./config.yaml
COPY entrypoint.sh /entrypoint.sh
COPY wait-for-it.sh /wait-for-it.sh
RUN chmod +x /entrypoint.sh /wait-for-it.sh
COPY entrypoint.sh ./entrypoint.sh
COPY wait-for-it.sh ./wait-for-it.sh
RUN chmod +x ./entrypoint.sh ./wait-for-it.sh
CMD ["/wait-for-it.sh", "super__postgres:5432","-t","60","--","/entrypoint.sh"]
CMD ["./wait-for-it.sh", "super__postgres:5432","-t","60","--","./entrypoint.sh"]
Regular → Executable
View File
Regular → Executable
View File