[transtats] - acutally commit the changes

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
Ryan Lercho 2023-05-05 12:17:12 +10:00
parent 49ed5c6a14
commit 82664c70a6

View file

@ -17,7 +17,12 @@ spec:
RUN mkdir /workspace
ENV PYTHONUNBUFFERED 1
WORKDIR /workspace
{% if env == 'staging' %}
RUN git clone -b devel https://github.com/ryanlerch/transtats.git .
{% endif %}
{% if env == 'production' %}
RUN git clone -b main https://github.com/transtats/transtats.git .
{% endif %}
RUN pip3 install -r /workspace/requirements/base.txt
RUN cp deploy/docker-compose/transtats/launch.sh /usr/bin/transtats.sh
RUN cp deploy/docker-compose/transtats/wait-for-it.sh /usr/bin/wait-for-it.sh