personal-chatui / Dockerfile
abhinand's picture
Update Dockerfile
efb3552 verified
raw
history blame contribute delete
394 Bytes
FROM ghcr.io/open-webui/open-webui:main
# # Set static environment variables
# ENV OPENAI_API_BASE_URLS="https://api.together.xyz/v1;https://api.groq.com/openai/v1"
# ENV OPENAI_API_KEYS="$TOGETHER_API_KEY;$GROQ_API_KEY"
# ENV DATABASE_URL="$REMOTE_DB_URI"
# Set permissions for the app directory
RUN chmod -R 777 /app/backend
VOLUME /app/backend/data
# Expose the necessary port
EXPOSE 8080