feat: switch to pre-built Docker image & update ports
All checks were successful
Docker CI/CD / Docker Build and Push to Docker Hub (push) Successful in 6m19s

Moved from building the GPT bot Docker container on the fly to using a pre-built image, enhancing the setup's efficiency and reducing build times for deployments. Adjusted the server's exposed port to resolve conflicts and standardize deployment configurations. Additionally, locked in the `future` package version to ensure compatibility with legacy Python code, mitigating potential future incompatibility issues.
This commit is contained in:
Kumi 2024-04-23 16:45:16 +02:00
parent eb9312099a
commit 076eb2d243
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 3 additions and 2 deletions

View file

@ -8,5 +8,6 @@ COPY LICENSE /app
RUN apt update && apt install -y build-essential libpython3-dev
RUN pip install .[all]
RUN pip install 'future==1.0.0'
CMD ["python", "-m", "gptbot"]

View file

@ -2,7 +2,7 @@ version: '3.8'
services:
gptbot:
build: .
image: kumitterer/matrix-gptbot
volumes:
- ./config.ini:/app/config.ini
@ -11,4 +11,4 @@ services:
volumes:
- ./pantalaimon.conf:/etc/pantalaimon/pantalaimon.conf
ports:
- "8010:8010"
- "8009:8009"