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: c2b88317b22eb22fb0d4e42cd529eff664ee7d88 (plain)
1
2
3
4
5
6
7
8
FROM python:2-alpine

COPY . /isida
WORKDIR /isida

RUN pip2 install -r requirements.txt

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