cycles/Dockerfile

15 lines
197 B
Docker
Raw Normal View History

2022-04-15 02:47:27 +00:00
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