Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ShawnAI
/
3GPP-5GC-API
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
32732b1
3GPP-5GC-API
/
Dockerfile
ShawnAI
Update Dockerfile
8aa7a0d
over 1 year ago
raw
Copy download link
history
blame
Safe
Wrap lines
207 Bytes
# production stage
FROM
nginx:latest as production-stage
COPY
dist /etc/nginx/html
COPY
conf/nginx.conf /etc/nginx/nginx.conf
RUN
chmod
-R 777 /var/cache/nginx
EXPOSE
8888
CMD
[
"nginx"
,
"-g"
,
"daemon off;"
]