open5gs/docker/webui/Dockerfile
Md. Amdadul Bari Imad 7453b5be9a docker: replace deprecated MAINTAINER with OCI image label
Use org.opencontainers.image.authors label instead of deprecated
MAINTAINER instruction in all Dockerfiles.
2026-02-08 11:55:34 +09:00

16 lines
347 B
Docker

FROM node:19
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
COPY webui /usr/src/open5gs/webui
WORKDIR /usr/src/open5gs/webui
RUN npm clean-install && \
npm run build
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.9.0/wait /wait
RUN chmod +x /wait
CMD /wait && npm run start
EXPOSE 9999