mirror of
https://github.com/open5gs/open5gs.git
synced 2026-04-28 11:29:32 +00:00
Use org.opencontainers.image.authors label instead of deprecated MAINTAINER instruction in all Dockerfiles.
16 lines
347 B
Docker
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
|