2023-04-19 10:53:02 +02:00
|
|
|
FROM python:latest
|
2023-04-18 21:26:17 +02:00
|
|
|
|
|
|
|
WORKDIR /script
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y
|
|
|
|
|
2023-04-19 11:15:24 +02:00
|
|
|
RUN echo $(ls -a)
|
|
|
|
|
2023-04-19 11:13:01 +02:00
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
2023-04-18 21:26:17 +02:00
|
|
|
|
2023-04-19 10:58:53 +02:00
|
|
|
COPY . .
|