-
Notifications
You must be signed in to change notification settings - Fork 395
/
Copy pathaws-api.Dockerfile
48 lines (37 loc) · 1.32 KB
/
aws-api.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
44
45
46
47
48
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"
WORKDIR /workspace
# Need to expose port in ENV to use in CMD
ARG PORT=8000
ENV PORT=${PORT}
# Build with community packages
ARG INSTALL_COMMUNITY_DEPS
# Copy dependency files to avoid cache invalidations
COPY ./pyproject.toml poetry.lock ./
# Install poetry
RUN pip install --no-cache-dir poetry==1.8.4
# Conditional installation of dependencies
RUN if [ "$INSTALL_COMMUNITY_DEPS" = "true" ]; then \
poetry install --with dev,community; \
else \
poetry install --with dev; \
fi
COPY src/backend src/backend/
COPY src/community src/community/
# Copy environment variables optionally
# IMPORTANT: Can't be put in the docker-compose, will break tests
COPY .en[v] .env
EXPOSE ${PORT}
CMD uvicorn backend.main:app --reload --host 0.0.0.0 --port ${PORT} --timeout-keep-alive 300