forked from cohere-ai/cohere-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gcp.backend.Dockerfile
43 lines (31 loc) · 1.12 KB
/
gcp.backend.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM python:3.11
# Keeps Python from generating .pyc files in the container
# Turns off buffering for easier container logging
# Force UTF8 encoding for funky character handling
# Needed so imports function properly
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV PYTHONIOENCODING=utf-8
ENV PYTHONPATH=/workspace/src/
# Keep the venv name and location predictable
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
# "Activate" the venv manually for the context of the container
ENV VIRTUAL_ENV=/workspace/.venv
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
# Set DATABASE_URL from cloudbuild.yaml substitutions
ARG DATABASE_URL
ENV DATABASE_URL=${DATABASE_URL}
WORKDIR /workspace
ARG port=8000
# Need to expose port in ENV to use in CMD
ENV PORT=${port}
# Copy dependency files to avoid cache invalidations
COPY pyproject.toml poetry.lock ./
# Install poetry and run poetry install
RUN pip install --no-cache-dir poetry==1.6.1 && \
poetry install
COPY src/backend/ src/backend/
# Run Alembic migrations
RUN poetry run alembic -c src/backend/alembic.ini upgrade head
EXPOSE ${PORT}
CMD uvicorn backend.main:app --reload --host 0.0.0.0 --port ${PORT}