-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDockerfile
43 lines (35 loc) · 1.45 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
#
# This file is part of Cube Builder.
# 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.8
FROM ${BASE_IMAGE}
ARG GIT_COMMIT
LABEL "org.repo.maintainer"="Brazil Data Cube <brazildatacube@inpe.br>"
LABEL "org.repo.title"="Docker image for Data Cube Builder Service"
LABEL "org.repo.description"="Docker image for Data Cube Builder application."
LABEL "org.repo.git_commit"="${GIT_COMMIT}"
# Build arguments
ARG CUBE_BUILDER_VERSION="1.1.0"
ARG CUBE_BUILDER_INSTALL_PATH="/opt/cube-builder/${CUBE_BUILDER_VERSION}"
ADD . ${CUBE_BUILDER_INSTALL_PATH}
WORKDIR ${CUBE_BUILDER_INSTALL_PATH}
RUN python3 -m pip install pip --upgrade setuptools wheel && \
python3 -m pip install -e .[amqp] && \
python3 -m pip install gunicorn
EXPOSE 5000
CMD ["gunicorn", "-w4", "--bind=0.0.0.0:5000", "cube_builder:create_app()"]