* adds docker related configurations
* directly working configuration provided
This commit is contained in:
2022-01-10 13:52:40 +01:00
parent 1fc0fbbf0a
commit d9577fe6a1
4 changed files with 78 additions and 5 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
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/