Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/isida/vi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c3ed43a179c9f0233a789789b7cfb64775d3f0c (plain)
1
2
3
4
5
6
7
8
FROM python:3-alpine

COPY . /isida
WORKDIR /isida

RUN pip3 install -r requirements.txt

CMD ["python3", "./isida.py"]