diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a2f6ed8..0000000 --- a/Dockerfile +++ /dev/null @@ -1,23 +0,0 @@ -FROM python:3-alpine as poetry - -RUN apk add poetry -COPY poetry.lock . -COPY pyproject.toml . -RUN poetry export -f requirements.txt --output requirements.txt - - - -FROM python:3-alpine - -RUN apk add --no-cache ffmpeg - -WORKDIR /opt - -COPY --from=poetry requirements.txt . -RUN pip install -r requirements.txt - -ADD importer importer -ADD main.py . - - -ENTRYPOINT python main.py |