Revert accidental docker->master merge

This commit is contained in:
2022-02-04 14:24:31 +01:00
parent 380634d170
commit db834b581e
9 changed files with 21 additions and 203 deletions

View File

@@ -1,20 +0,0 @@
FROM python:3.7-slim
ENV PYTHONUNBUFFERED 1
WORKDIR /konova
# Install some dependencies
RUN apt update
RUN apt install -y gdal-bin
# Copy requirements file into workspace
COPY ./requirements.txt /konova/
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Copy rest of project into workspace
COPY . /konova/
# Move static files in designated folder
RUN python manage.py collectstatic --noinput