Skip to content

donaldrauscher/gcs-pypi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gcs-pypi

Google Cloud Build job that converts GCS bucket into a simple PyPI static site server using dumb-pypi. First, need to set up a GCS bucket where you can host a static site. Packages should be uploaded to the raw directory within the bucket.

To build the site:

gcloud builds submit --config cloudbuild.yaml --no-source

To install package hosted on the site:

pip install your-package==0.0.1 --extra-index-url http://${BUCKET}/simple --trusted-host ${BUCKET}

Or add the --extra-index-url option at the top of your requirements.txt:

--extra-index-url http://${BUCKET}/simple
--trusted-host ${BUCKET}
your-package==0.0.1
...

NOTE: Need --trusted-host since not using HTTPS (and can only use HTTP at the moment)

Running this Cloud Build job requires a dumb-pypi custom step; can build by running the following:

gcloud builds submit --config cloudbuild_step.yaml .

If have another Cloud Build job that is building a package and uploading to the GCS bucket, can trigger this job from that job by adding the following 2 steps:

steps:
  ...
  - name: gcr.io/cloud-builders/git
    args: ['clone', 'https://github.com/donaldrauscher/gcs-pypi.git']
  - name: gcr.io/cloud-builders/gcloud
    args: ['builds', 'submit', '--config', 'cloudbuild.yaml', '--no-source', '--async', '--substitutions', '_BUCKET=${_BUCKET}']
    dir: '/workspace/gcs-pypi'
substitutions:
  _BUCKET: ...

Example of this: https://github.com/donaldrauscher/djr-py

About

Google Cloud Build job that converts GCS bucket into a simple PyPI static site server using dumb-pypi

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published