Answers for "making a docker file for python program"

0

install python in dockerfile

RUN apt-get update
RUN apt-get install python
Posted by: Guest on August-14-2020
1

dockerfile to run python script

docker run -it --rm --name my-first-python-script -v "$PWD":/usr/src/widget_app python:3 python my_script.py
Posted by: Guest on August-20-2020

Code answers related to "making a docker file for python program"

Python Answers by Framework

Browse Popular Code Answers by Language