Add ability to restart

This commit is contained in:
ElMoribond
2021-06-20 18:07:24 +02:00
parent 6d02150b00
commit c417778a51
8 changed files with 86 additions and 1 deletions
+10
View File
@@ -1,3 +1,11 @@
FROM ubuntu:20.04 AS docker
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -yqq update && \
apt-get install -yq --no-install-recommends ca-certificates docker.io && \
apt-get autoremove -y && \
apt-get clean -y
ARG ARCH=amd64
ARG WHEELS_VERSION
ARG FFMPEG_VERSION
@@ -18,6 +26,8 @@ COPY --from=ffmpeg /usr/local /usr/local/
COPY --from=wheels /wheels/. /wheels/
COPY --from=docker /usr/bin/docker /usr/local/bin/docker
ENV FLASK_ENV=development
# ENV FONTCONFIG_PATH=/etc/fonts
ENV DEBIAN_FRONTEND=noninteractive