test / Dockerfile
bardd's picture
Create Dockerfile
d8c858d verified
raw
history blame
435 Bytes
FROM ghcr.io/open-webui/open-webui:main
# Set environment variables
ENV ENV=production \
WEBUI_AUTH=false \
OPENAI_API_BASE_URL=https://api.deepinfra.com/v1/openai \
OPENAI_API_KEY=Qkg36ZyeOllw5Y7ARp3Xr7Gmq8JmR13B
# Expose the application port
EXPOSE 8080
# Set the working directory
WORKDIR /app/backend
# Make sure the start.sh script is executable
RUN chmod +x start.sh
# Run the start.sh script
CMD ["./start.sh"]