1
0
mirror of synced 2026-03-10 12:33:39 +00:00

Fix Dockerfile to send correct STOPSIGNAL

This commit is contained in:
Daniel Chesterton
2021-12-30 23:05:09 +00:00
parent 8b6ee051d4
commit 843d0f1363

View File

@@ -8,6 +8,7 @@ COPY requirements.txt /
RUN pip install --no-warn-script-location --prefix=/install -r /requirements.txt RUN pip install --no-warn-script-location --prefix=/install -r /requirements.txt
FROM base FROM base
STOPSIGNAL SIGINT
COPY --from=builder /install /usr/local COPY --from=builder /install /usr/local
COPY src /app COPY src /app
COPY VERSION /app COPY VERSION /app