0 votes
in Docker by
recategorized by
Write a Docker file to create and copy a directory and built it using python modules in Devops?

1 Answer

0 votes
by

Below is the steps in Docker file to create and copy a directory and built it using python modules in Devops

  • FROM pyhton:2.7-slim
  • WORKDIR /app
  • COPY . /app
  • docker build –tag

Related questions

+1 vote
asked Apr 5, 2020 in Docker by ryan harris
0 votes
asked Apr 5, 2020 in Docker by ryan harris
...