mirror of
https://github.com/valitydev/dominant-v2.git
synced 2024-11-05 16:25:24 +00:00
604d1b5b78
* IMP-284: Implement new DB schema * WIP * WIP * SQL Request for commiting * Implement RepositoryClient and UserOpManagement * Raw integration tests * WIP Testing * WIP Testing * Tests WIP * Insert objects rebuild * Remade sql requests and make test work * Extra tests * Extra tests * Update/Delete work * Rename everything from dmt_v2 to dmt
60 lines
1.6 KiB
Docker
60 lines
1.6 KiB
Docker
ARG OTP_VERSION
|
|
|
|
# Build the release
|
|
FROM docker.io/library/erlang:${OTP_VERSION} AS builder
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# Install thrift compiler
|
|
ARG THRIFT_VERSION
|
|
ARG TARGETARCH
|
|
RUN wget -q -O- "https://github.com/valitydev/thrift/releases/download/${THRIFT_VERSION}/thrift-${THRIFT_VERSION}-linux-${TARGETARCH}.tar.gz" \
|
|
| tar -xvz -C /usr/local/bin/
|
|
|
|
# Hack ssh fetch and copy sources
|
|
ARG FETCH_TOKEN
|
|
RUN git config --global url."https://${FETCH_TOKEN}@github.com/".insteadOf ssh://git@github.com/ ;\
|
|
mkdir /build
|
|
COPY . /build/
|
|
|
|
# Build the release
|
|
WORKDIR /build
|
|
RUN rebar3 compile && \
|
|
rebar3 as prod release
|
|
|
|
# Make a runner image
|
|
FROM docker.io/library/erlang:${OTP_VERSION}-slim
|
|
|
|
ARG SERVICE_NAME
|
|
ARG USER_UID=1001
|
|
ARG USER_GID=$USER_UID
|
|
|
|
# Set env
|
|
ENV CHARSET=UTF-8
|
|
ENV LANG=C.UTF-8
|
|
|
|
# Set runtime
|
|
WORKDIR /opt/${SERVICE_NAME}
|
|
|
|
COPY --from=builder /build/_build/prod/rel/${SERVICE_NAME} /opt/${SERVICE_NAME}
|
|
|
|
# Set up migration
|
|
COPY --from=builder /build/migrations /opt/${SERVICE_NAME}/migrations
|
|
COPY --from=builder /build/.env /opt/${SERVICE_NAME}/.env
|
|
|
|
ENV WORK_DIR=/opt/${SERVICE_NAME}
|
|
|
|
RUN echo "#!/bin/sh" >> /entrypoint.sh && \
|
|
echo "exec /opt/${SERVICE_NAME}/bin/${SERVICE_NAME} foreground" >> /entrypoint.sh && \
|
|
chmod +x /entrypoint.sh
|
|
|
|
RUN groupadd --gid ${USER_GID} ${SERVICE_NAME} && \
|
|
mkdir /var/log/${SERVICE_NAME} && \
|
|
chown ${USER_UID}:${USER_GID} /var/log/${SERVICE_NAME} && \
|
|
useradd --uid ${USER_UID} --gid ${USER_GID} -M ${SERVICE_NAME}
|
|
USER ${SERVICE_NAME}
|
|
|
|
ENTRYPOINT []
|
|
CMD ["/entrypoint.sh"]
|
|
|
|
EXPOSE 8022
|