Skip to content

Instantly share code, notes, and snippets.

View JiniousChoi's full-sized avatar

Jin Choi JiniousChoi

  • South Korea
View GitHub Profile
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements; and to You under the Apache License, Version 2.0.
FROM scala
ENV DOCKER_VERSION 1.12.0
ENV KUBERNETES_VERSION 1.6.4
RUN apk update
RUN apk add --update wget
@JiniousChoi
JiniousChoi / gist:56902ae953ea2daaaa0c628417ecffd7
Last active June 27, 2018 04:34
a question for feeds (especially for custom event provider)
// identity.py
def main(args):
print(args)
return { 'args' : args }
$ wsk package create feedtest --shared=yes
ok: created package feedtest
$ wsk action create feedtest/identity identity.py --kind python:3
ok: created action feedtest/identity