31 lines
828 B
Docker
31 lines
828 B
Docker
# pull official base image
|
|
FROM python:3.14-slim
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
|
|
# set work directory
|
|
WORKDIR /usr/src/rad
|
|
|
|
# set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Numpy requriements
|
|
#RUN apk add --no-cache --update \
|
|
# python3 python3-dev gcc \
|
|
# gfortran musl-dev \
|
|
# libffi-dev openssl-dev
|
|
RUN apt-get update && apt-get -y install postgresql postgresql-contrib git libcairo2-dev pkg-config gcc redis-tools watchman
|
|
|
|
|
|
# install dependencies
|
|
#RUN pip install --upgrade pip
|
|
COPY ./requirements.txt .
|
|
RUN uv venv /opt/venv
|
|
# Use the virtual environment automatically
|
|
ENV VIRTUAL_ENV=/opt/venv
|
|
# Place entry points in the environment at the front of the path
|
|
ENV PATH="/opt/venv/bin:$PATH"
|
|
RUN uv pip install -r requirements.txt
|
|
|
|
# copy project
|
|
COPY . . |