Skip to content

Commit

Permalink
FIXES missing api_chatgpt dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvanilla committed Apr 10, 2023
1 parent 3eb1cc7 commit 6fb61ab
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions api/services/api_chatgpt/dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:slim-buster

WORKDIR /app

COPY requirements.txt .

RUN pip install --no-cache-dir -r requirements.txt

COPY . .

EXPOSE 8007

CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]

0 comments on commit 6fb61ab

Please sign in to comment.