Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
Initial files to build the container
Browse files Browse the repository at this point in the history
  • Loading branch information
psychopenguin committed Apr 26, 2018
1 parent a76d038 commit 9899d75
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3-alpine

RUN pip install --upgrade pip
RUN pip install pipenv
WORKDIR /gce-utils
ADD Pipfile .
ADD Pipfile.lock .
RUN pipenv install --system
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[packages]
apache-libcloud = "*"

[dev-packages]

[requires]
python_version = "3.6"
64 changes: 64 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9899d75

Please sign in to comment.