Skip to content

Commit

Permalink
Add docker lib
Browse files Browse the repository at this point in the history
  • Loading branch information
yxjiang committed Feb 18, 2024
1 parent a861a1f commit 80d84a1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ FROM python:3.10-bullseye
# Set the working directory in the container
WORKDIR /app

# Install system dependencies required for runtime.
# Include libgl1-mesa-glx for OpenCV-python and libglib2.0-0 if necessary
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*

# Define build-time environment variables
ARG ENVIRONMENT
ARG OPENAI_API_KEY
Expand Down

0 comments on commit 80d84a1

Please sign in to comment.