forked from eclecticiq/OpenTAXII
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
36 lines (27 loc) · 1.07 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
FROM python:3.9 AS build
LABEL maintainer="EclecticIQ <[email protected]>"
RUN apt-get update \
&& apt-get install -y libmariadb-dev-compat
RUN python3 -m venv /venv && /venv/bin/pip install -U pip setuptools
COPY ./requirements.txt ./requirements-docker.txt /opentaxii/
RUN /venv/bin/pip install -r /opentaxii/requirements.txt -r /opentaxii/requirements-docker.txt
COPY . /opentaxii
RUN /venv/bin/pip install /opentaxii
FROM python:3.9-slim AS prod
LABEL maintainer="EclecticIQ <[email protected]>"
COPY --from=build /venv /venv
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y mariadb-client postgresql-client \
&& apt-get autoremove \
&& apt-get autoclean \
&& mkdir /data /input
VOLUME ["/data", "/input"]
COPY ./docker/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 9000
ENV PATH "/venv/bin:${PATH}"
ENV PYTHONDONTWRITEBYTECODE "1"
CMD ["/venv/bin/gunicorn", "opentaxii.http:app", "--workers=2", \
"--log-level=info", "--log-file=-", "--timeout=300", \
"--config=python:opentaxii.http", "--bind=0.0.0.0:9000"]