mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
Merge branch 'main' of https://github.com/xtekky/gpt4free
This commit is contained in:
commit
13853665c5
33
.github/workflows/publish-workflow.yaml
vendored
Normal file
33
.github/workflows/publish-workflow.yaml
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: Publish Docker image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Setup Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Get metadata for Docker
|
||||||
|
id: metadata
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ghcr.io/${{ github.repository }}
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Build and push image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.metadata.outputs.tags }}
|
||||||
|
labels: ${{ steps.metadata.outputs.labels }}
|
@ -26,8 +26,8 @@ RUN pip install --upgrade pip && pip install -r requirements.txt
|
|||||||
# This may include all code, assets, and configuration files required to run the application.
|
# This may include all code, assets, and configuration files required to run the application.
|
||||||
COPY . /app/
|
COPY . /app/
|
||||||
|
|
||||||
# Expose port 1337
|
# Expose port 80 and 1337
|
||||||
EXPOSE 1337
|
EXPOSE 80 1337
|
||||||
|
|
||||||
# Define the default command to run the app using Python's module mode.
|
# Define the default command to run the app using Python's module mode.
|
||||||
CMD ["python", "-m", "g4f.api.run"]
|
ENTRYPOINT ["python", "-m", "g4f.cli"]
|
@ -1,13 +1,18 @@
|
|||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
gpt4free:
|
gpt4free-api: &gpt4free
|
||||||
|
image: gpt4free:latest
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
volumes:
|
cache_from:
|
||||||
- .:/app
|
- gpt4free:latest
|
||||||
ports:
|
ports:
|
||||||
- '1337:1337'
|
- '1337:1337'
|
||||||
environment:
|
command: api
|
||||||
- PYTHONUNBUFFERED=1
|
gpt4free-gui:
|
||||||
|
<<: *gpt4free
|
||||||
|
ports:
|
||||||
|
- '8080:80'
|
||||||
|
command: gui
|
Loading…
Reference in New Issue
Block a user