-
Notifications
You must be signed in to change notification settings - Fork 9
/
Dockerfile
41 lines (35 loc) · 1.38 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
#
# This file is part of BDC-STAC.
# Copyright (C) 2022 INPE.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/gpl-3.0.html>.
#
ARG GIT_COMMIT
ARG BASE_IMAGE=python:3.11
FROM ${BASE_IMAGE}
# Image metadata
LABEL "org.repo.maintainer"="Brazil Data Cube <[email protected]>"
LABEL "org.repo.title"="Docker image for STAC Server"
LABEL "org.repo.description"="Docker image for SpatioTemporal Asset Catalog (STAC) Server for Brazil Data Cube."
LABEL "org.repo.git_commit"="${GIT_COMMIT}"
LABEL "org.repo.licenses"="GPLv3"
# Build arguments
ARG BDC_STAC_VERSION="1.0.2"
ARG BDC_STAC_INSTALL_PATH="/opt/bdc-stac/${BDC_STAC_VERSION}"
COPY . ${BDC_STAC_INSTALL_PATH}
WORKDIR ${BDC_STAC_INSTALL_PATH}
RUN pip install -e .
RUN pip install gunicorn
EXPOSE 5000
CMD ["gunicorn", "-w4", "--bind=0.0.0.0:5000", "bdc_stac:create_app()"]