da2856237b
So that python requirements could be installed from wheels.
13 lines
206 B
Docker
13 lines
206 B
Docker
FROM python:3
|
|
|
|
WORKDIR /app/
|
|
|
|
ENV PIP_NO_CACHE_DIR 1
|
|
ADD ./requirements.txt ./
|
|
RUN pip install -r ./requirements.txt
|
|
|
|
ADD ./ ./
|
|
|
|
ENTRYPOINT ["/usr/bin/env", "python3", "/app/rawfile.py"]
|
|
CMD ["csi-driver"]
|