forked from geobeyond/fastgeoapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
65 lines (52 loc) · 1.91 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
FROM python:3.10-slim-bullseye
# Install security updates and system dependencies, then clean up
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get --yes upgrade && \
# these are our own dependencies and utilities
# if you need to add more, please sort them in alphabetical order
apt-get install --yes --no-install-recommends \
cmake \
curl \
g++ \
gdal-bin \
libcurl4-openssl-dev \
libgdal-dev \
libpq-dev \
make \
net-tools \
procps \
tini \
unzip \
vim && \
apt-get --yes clean && \
rm -rf /var/lib/apt/lists/*
# download poetry
RUN curl --silent --show-error --location \
https://install.python-poetry.org > /opt/install-poetry.py
# Create a normal non-root user so that we can use it to run
RUN useradd --create-home appuser
USER appuser
RUN mkdir /home/appuser/app && \
mkdir /home/appuser/data && \
python opt/install-poetry.py --yes --version 1.3.1
ENV PATH="$PATH:/home/appuser/.local/bin" \
# This allows us to get traces whenever some C code segfaults
PYTHONFAULTHANDLER=1
# Only copy the dependencies for now and install them
WORKDIR /home/appuser/app
COPY --chown=appuser:appuser pyproject.toml poetry.lock .env pygeoapi-config.yml /home/appuser/app/
RUN poetry install --no-root --only main
EXPOSE 5000
# Now install our code
COPY --chown=appuser:appuser . .
RUN poetry install --no-root --only main
# Write git commit identifier into the image
ARG GIT_COMMIT
ENV GIT_COMMIT=$GIT_COMMIT
RUN echo $GIT_COMMIT > /home/appuser/git-commit.txt
# Compile python stuff to bytecode to improve startup times
RUN poetry run python -c "import compileall; compileall.compile_path(maxlevels=10)"
# use tini as the init process
ENTRYPOINT ["tini", "-g", "--"]
CMD ["poetry", "run", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "5000", "--loop", "asyncio"]