15 lines
197 B
Docker
15 lines
197 B
Docker
|
FROM debian:jessie-slim
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
git \
|
||
|
python3 \
|
||
|
python3-pip
|
||
|
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
ENV LC_ALL C.UTF-8
|
||
|
ENV LANG C.UTF-8
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . /app
|