3GPP-5GC-API / Dockerfile
ShawnAI's picture
Update Dockerfile
19624c1
raw
history blame
289 Bytes
# production stage
FROM nginx:latest as production-stage
RUN git clone -b Rel-18 https://github.com/jdegre/5GC_APIs /etc/nginx/html/Rel-18
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;"]