aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile36
1 files changed, 0 insertions, 36 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 29088229..00000000
--- a/Dockerfile
+++ /dev/null
@@ -1,36 +0,0 @@
-FROM python:3.8-alpine
-
-RUN apk update && \
- apk add \
- build-base \
- curl \
- git \
- libffi-dev \
- openssl-dev \
- libxml2-dev \
- libxslt-dev \
- libpq \
- postgresql-client \
- postgresql-dev \
- npm
-
-WORKDIR newspipe
-
-COPY newspipe newspipe/
-COPY instance instance/
-COPY runserver.py .
-COPY package.json .
-COPY package-lock.json .
-COPY pyproject.toml .
-COPY poetry.lock .
-COPY wait-for-postgres.sh .
-
-RUN chmod +x ./wait-for-postgres.sh
-
-RUN mkdir node_modules
-RUN npm install
-RUN mkdir -p newspipe/static/npm_components
-RUN cp -R node_modules/* newspipe/static/npm_components/
-
-RUN pip install poetry
-RUN poetry install
bgstack15