mirror of
https://github.com/openfaas/faas.git
synced 2025-06-18 03:56:37 +00:00
Migrate from alexellis org to openfaas
Note, not all `alexellis/github` references should be changed, there are a number of repos which are not part of the openfaas org, this commit excludes those. Signed-off-by: John McCabe <john@johnmccabe.net>
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
FROM artemklevtsov/r-alpine:latest
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/0.6.1/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/0.6.1/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
WORKDIR /root/
|
||||
|
@ -15,7 +15,7 @@ Use this FaaS function using R.
|
||||
|
||||
* Option 1 - click *Create a new function* on the FaaS UI
|
||||
|
||||
* Option 2 - use the [faas-cli](https://github.com/alexellis/faas-cli/) (experimental)
|
||||
* Option 2 - use the [faas-cli](https://github.com/openfaas/faas-cli/) (experimental)
|
||||
|
||||
```
|
||||
# curl -sSL https://get.openfaas.com | sudo sh
|
||||
|
@ -9,7 +9,7 @@ Use this FaaS function using R.
|
||||
|
||||
- Option 1 - click *Create a new function* on the FaaS UI
|
||||
|
||||
- Option 2 - use the [faas-cli](https://github.com/alexellis/faas-cli/) (experimental)
|
||||
- Option 2 - use the [faas-cli](https://github.com/openfaas/faas-cli/) (experimental)
|
||||
|
||||
<!-- -->
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM toricls/gnucobol:latest
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
WORKDIR /root/
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM node:6.9.1-alpine
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
WORKDIR /root/
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM microsoft/dotnet:sdk
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/v0.5-alpha/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/v0.5-alpha/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
ENV DOTNET_CLI_TELEMETRY_OPTOUT 1
|
||||
|
@ -3,12 +3,12 @@ FROM golang:1.7.5-alpine
|
||||
MAINTAINER alexellis2@gmail.com
|
||||
ENTRYPOINT []
|
||||
|
||||
WORKDIR /go/src/github.com/alexellis/faas/sample-functions/golang
|
||||
COPY . /go/src/github.com/alexellis/faas/sample-functions/golang
|
||||
WORKDIR /go/src/github.com/openfaas/faas/sample-functions/golang
|
||||
COPY . /go/src/github.com/openfaas/faas/sample-functions/golang
|
||||
|
||||
RUN go install
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/v0.5-alpha/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/v0.5-alpha/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
ENV fprocess "/go/bin/golang"
|
||||
|
@ -2,8 +2,8 @@ FROM golang:1.7.5-windowsservercore
|
||||
MAINTAINER alexellis2@gmail.com
|
||||
ENTRYPOINT []
|
||||
|
||||
WORKDIR /go/src/github.com/alexellis/faas/sample-functions/golang
|
||||
COPY . /go/src/github.com/alexellis/faas/sample-functions/golang
|
||||
WORKDIR /go/src/github.com/openfaas/faas/sample-functions/golang
|
||||
COPY . /go/src/github.com/openfaas/faas/sample-functions/golang
|
||||
RUN go build
|
||||
|
||||
ADD ./watchdog.exe /
|
||||
|
@ -4,7 +4,7 @@ BaseFunction for Golang
|
||||
You will find a Dockerfile for Linux and one for Windows so that you can run serverless functions in a mixed-OS swarm.
|
||||
|
||||
Dockerfile for Windows
|
||||
* [Dockerfile.win](https://github.com/alexellis/faas/blob/master/sample-functions/BaseFunctions/golang/Dockerfile.win)
|
||||
* [Dockerfile.win](https://github.com/openfaas/faas/blob/master/sample-functions/BaseFunctions/golang/Dockerfile.win)
|
||||
|
||||
This function reads STDIN then prints it back - you can use it to create an "echo service" or as a basis to write your own function.
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM openjdk:8u121-jdk-alpine
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
WORKDIR /root/
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM node:6.9.1-alpine
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
WORKDIR /root/
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM python:2.7-alpine
|
||||
|
||||
ADD https://github.com/alexellis/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
ADD https://github.com/openfaas/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
||||
RUN chmod +x /usr/bin/fwatchdog
|
||||
|
||||
WORKDIR /root/
|
||||
|
Reference in New Issue
Block a user