1
0
This repository has been archived on 2024-07-09. You can view files and clone it, but cannot push or open issues or pull requests.
fist-attemp-bds-Maneger/Dockerfile
2021-08-25 19:10:33 -03:00

11 lines
303 B
Docker

FROM ghcr.io/the-bds-maneger/base:main
WORKDIR /opt/BdsManegerWeb
COPY ./ ./
RUN npm install --no-save && chmod a+x -v index.js
EXPOSE 19132/udp 19133/udp 1932/tcp 3000:80/tcp
USER thebds
VOLUME [ "/home/bds/bds_core" ]
WORKDIR /home/bds/
ENTRYPOINT [ "/opt/BdsManegerWeb/index.js" , "--DockerImage" ]