From 9f679692ab12aff28ad07e7d736eab97867ca54f Mon Sep 17 00:00:00 2001 From: Brian Seymour Date: Wed, 19 Sep 2018 21:58:50 -0500 Subject: [PATCH] poc work --- docker/Dockerfile | 4 ++++ docker/build_image | 1 + docker/execute | 10 ++++++++++ license | 19 +++++++++++++++++++ 4 files changed, 34 insertions(+) create mode 100644 docker/Dockerfile create mode 100755 docker/build_image create mode 100755 docker/execute create mode 100644 license diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..462408d --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,4 @@ +FROM ubuntu:18.04 + +RUN apt-get update +RUN apt-get -y install python3 diff --git a/docker/build_image b/docker/build_image new file mode 100755 index 0000000..36893be --- /dev/null +++ b/docker/build_image @@ -0,0 +1 @@ +docker build -t piston . diff --git a/docker/execute b/docker/execute new file mode 100755 index 0000000..33facc4 --- /dev/null +++ b/docker/execute @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +abs=$1 +file=$(basename $abs) + +docker run \ + --rm \ + -v $abs:/$file \ + -it foo \ + python3 /$file diff --git a/license b/license new file mode 100644 index 0000000..d2d6fd8 --- /dev/null +++ b/license @@ -0,0 +1,19 @@ +Copyright (c) 2018 Brian Seymour, EMKC Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.