69 lines
2.1 KiB
Plaintext
69 lines
2.1 KiB
Plaintext
# creates python virtual env
|
|
FROM python:3.8-slim AS CREATE_VENV_STAGE
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
# # set env variables
|
|
ENV VIRTUAL_ENV /opt/venv
|
|
ENV TACTICAL_DIR /opt/tactical
|
|
ENV TACTICAL_TMP_DIR /tmp/tactical
|
|
RUN python3 -m venv $VIRTUAL_ENV
|
|
ENV PATH "${VIRTUAL_ENV}/bin:$PATH"
|
|
|
|
SHELL ["/bin/bash", "-e", "-o", "pipefail", "-c"]
|
|
|
|
COPY api/tacticalrmm/requirements.txt ${TACTICAL_TMP_DIR}/api/requirements.txt
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends gcc libc6-dev && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
pip install --upgrade pip && \
|
|
pip install --no-cache-dir setuptools wheel gunicorn && \
|
|
sed -i '/uWSGI/d' ${TACTICAL_TMP_DIR}/api/requirements.txt && \
|
|
pip install --no-cache-dir -r ${TACTICAL_TMP_DIR}/api/requirements.txt
|
|
|
|
|
|
# runtime image
|
|
FROM python:3.8-slim
|
|
|
|
# set env variables
|
|
ENV VIRTUAL_ENV /opt/venv
|
|
ENV TACTICAL_DIR /opt/tactical
|
|
ENV TACTICAL_TMP_DIR /tmp/tactical
|
|
ENV TACTICAL_GO_DIR /usr/local/rmmgo
|
|
ENV TACTICAL_READY_FILE ${TACTICAL_DIR}/tmp/tactical.ready
|
|
ENV TACTICAL_USER tactical
|
|
ENV PATH "${VIRTUAL_ENV}/bin:${TACTICAL_GO_DIR}/go/bin:$PATH"
|
|
|
|
# copy files from repo
|
|
COPY api/tacticalrmm ${TACTICAL_TMP_DIR}/api
|
|
COPY scripts ${TACTICAL_TMP_DIR}/scripts
|
|
|
|
# copy go install from build stage
|
|
COPY --from=golang:1.16 /usr/local/go ${TACTICAL_GO_DIR}/go
|
|
COPY --from=CREATE_VENV_STAGE ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
|
|
|
# install deps
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install -y --no-install-recommends git && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo && \
|
|
groupadd -g 1000 "${TACTICAL_USER}" && \
|
|
useradd -M -d "${TACTICAL_DIR}" -s /bin/bash -u 1000 -g 1000 "${TACTICAL_USER}"
|
|
|
|
SHELL ["/bin/bash", "-e", "-o", "pipefail", "-c"]
|
|
|
|
# overwrite goversioninfo file
|
|
COPY api/tacticalrmm/core/goinstaller/bin/goversioninfo /usr/local/bin/goversioninfo
|
|
RUN chmod +x /usr/local/bin/goversioninfo
|
|
|
|
# docker init
|
|
COPY docker/containers/tactical/entrypoint.sh /
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
WORKDIR ${TACTICAL_DIR}/api
|
|
|
|
EXPOSE 80
|