-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new workflow to create faas-supervisor-kit image
- Loading branch information
1 parent
1b8b086
commit 18c329a
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ARG FAAS_VERSION | ||
|
||
RUN apt-get update -y && apt-get upgrade -y | ||
RUN apt-get install -y wget unzip | ||
RUN wget -O supervisor.zip https://github.com/grycap/faas-supervisor/releases/download/$FAAS_VERSION/supervisor.zip | ||
RUN unzip supervisor.zip | ||
RUN rm supervisor.zip |