Files
IIS_bigdata/assets/docker_files/Dockerfile
Andrey 8126a2a454 lec-1
2024-09-06 09:56:37 +03:00

12 строки
126 B
Docker

FROM python:3.11-slim
COPY . /myapp
WORKDIR /myapp
RUN pip install python-dotenv
ENTRYPOINT [ "python", "multiply.py" ]