Advertisement
Guest User

Untitled

a guest
Mar 21st, 2020
762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. Sending build context to Docker daemon 238.1kB
  2. Step 1/7 : FROM python:3.8
  3. ---> f88b2f81f83a
  4. Step 2/7 : EXPOSE 8000
  5. ---> Using cache
  6. ---> 08ad9d99a171
  7. Step 3/7 : WORKDIR /workspace
  8. ---> Running in b04cdd705110
  9. Removing intermediate container b04cdd705110
  10. ---> fe0640a06cc6
  11. Step 4/7 : COPY . /workspace
  12. ---> 950cd6d2b5a7
  13. Step 5/7 : RUN pip install pipenv
  14. ---> Running in 1fed5eecc0ee
  15. Collecting pipenv
  16. Downloading pipenv-2018.11.26-py3-none-any.whl (5.2 MB)
  17. Requirement already satisfied: setuptools>=36.2.1 in /usr/local/lib/python3.8/site-packages (from pipenv) (45.2.0)
  18. Collecting virtualenv
  19. Downloading virtualenv-20.0.13-py2.py3-none-any.whl (4.6 MB)
  20. Requirement already satisfied: pip>=9.0.1 in /usr/local/lib/python3.8/site-packages (from pipenv) (20.0.2)
  21. Collecting virtualenv-clone>=0.2.5
  22. Downloading virtualenv_clone-0.5.3-py2.py3-none-any.whl (6.6 kB)
  23. Collecting certifi
  24. Downloading certifi-2019.11.28-py2.py3-none-any.whl (156 kB)
  25. Collecting distlib<1,>=0.3.0
  26. Downloading distlib-0.3.0.zip (571 kB)
  27. Collecting six<2,>=1.9.0
  28. Downloading six-1.14.0-py2.py3-none-any.whl (10 kB)
  29. Collecting filelock<4,>=3.0.0
  30. Downloading filelock-3.0.12-py3-none-any.whl (7.6 kB)
  31. Collecting appdirs<2,>=1.4.3
  32. Downloading appdirs-1.4.3-py2.py3-none-any.whl (12 kB)
  33. Building wheels for collected packages: distlib
  34. Building wheel for distlib (setup.py): started
  35. Building wheel for distlib (setup.py): finished with status 'done'
  36. Created wheel for distlib: filename=distlib-0.3.0-py3-none-any.whl size=340427 sha256=7d1bc0677bb26d520875143ce979004be3a19113a2bbaa07eecb82b1f5948e75
  37. Stored in directory: /root/.cache/pip/wheels/eb/4e/d2/a903d4184fb49e4ac06474d65715b129aee13d69f7d227e78e
  38. Successfully built distlib
  39. Installing collected packages: distlib, six, filelock, appdirs, virtualenv, virtualenv-clone, certifi, pipenv
  40. Successfully installed appdirs-1.4.3 certifi-2019.11.28 distlib-0.3.0 filelock-3.0.12 pipenv-2018.11.26 six-1.14.0 virtualenv-20.0.13 virtualenv-clone-0.5.3
  41. Removing intermediate container 1fed5eecc0ee
  42. ---> 1566fcf2ad06
  43. Step 6/7 : RUN pipenv install --deploy --ignore-pipfile
  44. ---> Running in 3c33a28f0f1d
  45. Creating a virtualenv for this project…
  46. Pipfile: /workspace/Pipfile
  47. Using /usr/local/bin/python (3.8.2) to create virtualenv…
  48. ⠴ Creating virtual environment...created virtual environment CPython3.8.2.final.0-64 in 322ms
  49. creator CPython3Posix(dest=/root/.local/share/virtualenvs/workspace-dqq3IVyd, clear=False, global=False)
  50. seeder FromAppData(download=False, pip=latest, setuptools=latest, wheel=latest, via=copy, app_data_dir=/root/.local/share/virtualenv/seed-app-data/v1.0.1)
  51. activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator
  52. ✔ Successfully created virtual environment!
  53. Virtualenv location: /root/.local/share/virtualenvs/workspace-dqq3IVyd
  54. Installing dependencies from Pipfile.lock (9e66b9)…
  55. Removing intermediate container 3c33a28f0f1d
  56. ---> 330477409d93
  57. Step 7/7 : CMD ["pipenv", "run", "python", "/workspace/bin/web.py"]
  58. ---> Running in 7129f2fa9eff
  59. Removing intermediate container 7129f2fa9eff
  60. ---> 6ab7ea016e34
  61. Successfully built 6ab7ea016e34
  62. Successfully tagged atletico:latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement