Skip to content

Commit

Permalink
Merge pull request plant99#18 from milhouse1337/master
Browse files Browse the repository at this point in the history
Added the Dockerfile
  • Loading branch information
plant99 committed Jul 27, 2020
2 parents 797d7fa + 00c4c4e commit 5fe758e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
FROM debian:latest
LABEL maintainer "Pascal Meunier @milhouse1337"

# ENV TZ "America/Montreal"

ENV DEBIAN_FRONTEND noninteractive

# RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN apt-get update && apt-get install -y \
software-properties-common \
python3-setuptools \
python3-pip \
python-numpy \
gdal-bin \
libgdal-dev \
libsm6 \
libxext6 \
libxrender-dev

RUN pip3 install --upgrade pip
RUN pip install numpy GDAL==$(gdal-config --version)
RUN pip install opencv-python
RUN pip install felicette

WORKDIR /root

CMD ["/usr/local/bin/felicette"]

0 comments on commit 5fe758e

Please sign in to comment.