This website works better with JavaScript.
Home
Explore
Impressum/About...
Help
Sign In
m
/
dotfiles
Watch
1
Star
0
Fork
0
Code
Issues
2
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add kiss docker container for static site hosting
master
Markus Bergholz
4 years ago
parent
cfcb3075a8
commit
6080da1b31
1 changed files
with
9 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
docker/static_site/Dockerfile
+ 9
- 0
docker/static_site/Dockerfile
View File
@ -0,0 +1,9 @@
FROM
alpine:3.6
WORKDIR
/app
COPY
index.html /app/index.html
COPY
enc.png /app/enc.png
EXPOSE
8080
ENTRYPOINT
busybox httpd -p
8080
-h /app
&&
tail -f /dev/null
Write
Preview
Loading…
Cancel
Save