CryptoTracker icon indicating copy to clipboard operation
CryptoTracker copied to clipboard

issue on app docker file

Open ci30 opened this issue 1 year ago • 0 comments

Hello, Before executing the docker build require to add this line to app docker file RUN easy_install distribute Then the docker file for application most update as blow FROM python:2.7 WORKDIR /usr/src/app COPY requirements.txt ./ RUN easy_install distribute RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD [ "python", "tracker.py" ]

ci30 avatar Oct 27 '22 09:10 ci30