Update references remove refs to treeder oracle funcy (#376)

* Remove lots of refs to iron and funcy oracle etc..

* more ref replacements

* Replacing more refs. Treeder

* Use Fn not FN
This commit is contained in:
James Jeffrey
2017-09-29 16:22:15 -07:00
committed by Travis Reeder
parent 5219227393
commit c7f3066c75
81 changed files with 211 additions and 398 deletions

View File

@@ -1,4 +1,4 @@
Oracle Functions integration API tests
FN integration API tests
======================================
@@ -7,7 +7,7 @@ Test dependencies
```bash
DOCKER_HOST - for building images
API_URL - Oracle Functions API endpoint
API_URL - Fn API endpoint
```
How to run tests?

View File

@@ -1,8 +1,8 @@
FROM funcy/go:dev as build-stage
FROM fnproject/go:dev as build-stage
WORKDIR /function
ADD . /src
RUN cd /src && go build -o func
FROM funcy/go
FROM fnproject/go
WORKDIR /function
COPY --from=build-stage /src/func /function/
ENTRYPOINT ["./func"]

View File

@@ -1,8 +1,8 @@
FROM funcy/go:dev as build-stage
FROM fnproject/go:dev as build-stage
WORKDIR /function
ADD . /src
RUN cd /src && go build -o func
FROM funcy/go
FROM fnproject/go
WORKDIR /function
COPY --from=build-stage /src/func /function/
ENTRYPOINT ["./func"]

View File

@@ -1,4 +1,4 @@
name: funcy/multi-log
name: fnproject/multi-log
version: 0.0.1
runtime: go
entrypoint: ./func

View File

@@ -1,8 +1,8 @@
FROM funcy/go:dev as build-stage
FROM fnproject/go:dev as build-stage
WORKDIR /function
ADD . /src
RUN cd /src && go build -o func
FROM funcy/go
FROM fnproject/go
WORKDIR /function
COPY --from=build-stage /src/func /function/
ENTRYPOINT ["./func"]