bastienp commited on
Commit
a8ec9d7
·
1 Parent(s): 67d83cc

feat use docker sdk

Browse files
Files changed (3) hide show
  1. Dockerfile +4 -0
  2. README.md +7 -2
  3. nginx.conf +4 -0
Dockerfile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ FROM nginxinc/nginx-unprivileged:alpine3.20-perl
2
+
3
+ COPY . /usr/share/nginx/html
4
+ COPY nginx.conf /etc/nginx/conf.d/default.conf
README.md CHANGED
@@ -1,3 +1,8 @@
1
  ---
2
- sdk: static
3
- ---
 
 
 
 
 
 
1
  ---
2
+ title: NeuralJam
3
+ emoji: 👾
4
+ colorFrom: indigo
5
+ colorTo: blue
6
+ sdk: docker
7
+ pinned: false
8
+ ---
nginx.conf ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ server {
2
+ listen 7860;
3
+ root /usr/share/nginx/html;
4
+ }