This repository has been archived on 2024-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nubian/Dockerfile
Dunemask 1f9970929f Alexandria commit
- Commit to using Alexandria DB
- Fixed a bug when a user didn't exist but loading was attempted
2021-08-02 21:17:50 -06:00

10 lines
176 B
Docker

FROM node:latest
RUN apt-get update && apt-get upgrade -y
WORKDIR /dunestorm/nubian
COPY package.json .
COPY src src
RUN npm i
CMD ["npm","start"]
# EXPOSE PORTS
EXPOSE 52001