aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMax Meinhold <mxmeinhold@gmail.com>2021-03-20 12:36:18 -0400
committerMax Meinhold <mxmeinhold@gmail.com>2021-03-20 12:38:29 -0400
commit096f6309754bf5715c62c0208719700474d0667f (patch)
tree421a33ff4667bcd1cc1c35ee65c276098e9578ab /Dockerfile
parent83f6548f36845fe906094e706cd49a9e416a1118 (diff)
Patch 3.5.3-1: Fix DD_VERSION on prod
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 2ca5882..5c986f0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -33,6 +33,6 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
RUN ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
# Set version for apm
-RUN echo "export DD_VERSION=$(python3 packet/git.py)" >> /tmp/version
+RUN echo "export DD_VERSION=\"$(python3 packet/git.py)\"" >> /tmp/version
CMD ["/bin/bash", "-c", "source /tmp/version && ddtrace-run gunicorn packet:app --bind=0.0.0.0:8080 --access-logfile=- --timeout=600"]