Description: Removes unnecessary Dockerfile
Author: Maxime Werlen
Origin: other
Forwarded: not-needed
Last-Update: 2023-05-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Dockerfile
+++ /dev/null
@@ -1,22 +0,0 @@
-# https://hub.docker.com/_/python
-FROM python:3.11.0-alpine3.17
-
-# Optional python modules for additional functionality
-# https://urlwatch.readthedocs.io/en/latest/dependencies.html#optional-packages
-ARG OPT_PYPKGS="beautifulsoup4 jsbeautifier cssbeautifier aioxmpp"
-ENV HOME="/home/user"
-
-RUN adduser -D user
-USER user
-WORKDIR $HOME
-
-COPY --chown=user . $HOME/urlwatch
-
-RUN pip install \
-  --no-cache-dir \
-  ./urlwatch \
-  $OPT_PYPKGS \
-  && rm -rf urlwatch
-
-ENV PATH="$HOME/.local/bin:$PATH"
-ENTRYPOINT ["/home/user/.local/bin/urlwatch"]
