Commit c88ec639 by Johannes Zellner

Make a cloudron app

1 parent eb83e4da
Showing with 36 additions and 0 deletions
{
"id": "io.cloudron.surfer",
"title": "Surfer",
"author": "Cloudron Team",
"description": "Simple static file server",
"tagline": "Static file server",
"version": "0.1.0",
"healthCheckPath": "/",
"httpPort": 3000,
"manifestVersion": 1,
"website": "https://github.com/nebulade/surfer",
"contactEmail": "support@cloudron.io",
"icon": "logo.png",
"addons": {
"ldap": {},
"localstorage": {}
},
"mediaLinks": [
]
}
FROM cloudron/base:0.3.0
MAINTAINER Johannes Zellner <johannes@nebulon.de>
ENV DEBIAN_FRONTEND noninteractive
RUN mkdir -p /app/code
WORKDIR /app/code
ADD package.json /app/code/package.json
ADD src /app/code/src
ADD app.js /app/code/app.js
RUN npm install
EXPOSE 3000
CMD [ "nodejs", "app.js"]
logo.png

7.02 KB

Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!