3GPP-5GC-API / Dockerfile
ShawnAI's picture
Create Dockerfile
0fef4e8
raw
history blame
233 Bytes
# production stage
FROM nginx:latest as production-stage
# COPY --from=build-stage /app/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;"]