Hjjbvv / Dockerfile
jammss's picture
Update Dockerfile
2a289b5 verified
raw
history blame contribute delete
181 Bytes
FROM james00123/uff
WORKDIR /usr/src/app
RUN chmod 777 /usr/src/app
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
CMD ["bash", "start.sh"]