Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ RUN apt-get update -y && apt-get install -y \
sudo netcat-traditional libmagic-dev libgeos-dev pkg-config libaio1 libaio-dev \
default-libmysqlclient-dev locales locales-all postgresql-client-common \
postgresql-client unixodbc unixodbc-dev libsqliteodbc chromium-driver \
freetds-dev freetds-bin nim rustc redis-tools vim-tiny exempi libexempi-dev ffmpeg
freetds-dev freetds-bin nim rustc redis-tools vim-tiny exempi libexempi-dev \
ffmpeg libavutil-dev libavformat-dev libavcodec-dev

# Locales setup
# Set the locale to en_US.UTF-8 and other languages
Expand Down Expand Up @@ -61,8 +62,8 @@ WORKDIR /code
# Set Site Root Variable
ENV SITE_ROOT=/code

# Copy pyproject.toml and uv.lock for Docker layer caching
COPY pyproject.toml uv.lock Makefile ./
# Copy pyproject.toml for Docker layer caching
COPY pyproject.toml Makefile ./

# Install UV using pip and add to PATH
RUN pip install uv
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ else
endif

install:
uv sync --frozen --no-dev --extra production
uv sync --no-dev --extra production
@echo "Production dependencies installed. Use 'make develop' for development setup."

# Install all dependencies including dev dependencies
Expand Down
Loading