11 lines
161 B
Docker
11 lines
161 B
Docker
FROM python:latest
|
|
|
|
WORKDIR /script
|
|
|
|
RUN apt-get update && apt-get install -y
|
|
|
|
RUN echo $(ls -a)
|
|
|
|
RUN pip install --no-cache-dir -r ./requirements.txt
|
|
|
|
COPY . . |