From b8bfe308e6c22fa827dca98084a534a08cd968e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Lipt=C3=A1k?= Date: Tue, 25 Apr 2023 21:08:10 -0400 Subject: [PATCH] Correct Dockerfile --- Docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Docker/Dockerfile b/Docker/Dockerfile index 89ca0e5..a7bb7d0 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -1,10 +1,11 @@ -FROM python:3.10 +FROM python:3.10-slim RUN apt-get update && apt-get install -y git RUN git clone https://github.com/xtekky/gpt4free.git WORKDIR /gpt4free RUN pip install --no-cache-dir -r requirements.txt +RUN cp gui/streamlit_app.py . EXPOSE 8501