Skip to content

Instantly share code, notes, and snippets.

@topherbullock
Last active October 25, 2018 18:07
Show Gist options
  • Save topherbullock/9ab40b17b40d4f977f0496c95697f21e to your computer and use it in GitHub Desktop.
Save topherbullock/9ab40b17b40d4f977f0496c95697f21e to your computer and use it in GitHub Desktop.
simple web stuff
<html>
<h1> hello! </h1>
</html>
---
platform: linux
image_resource:
type: docker-image
source:
repository: python
inputs:
- name: html
run:
path: bash
args:
- -c
- cd html && python -m http.server 8000
#!/bin/bash
pushd html
python -m http.server 8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment