This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloaded/Dockerfile
2023-10-18 00:28:22 +01:00

19 lines
281 B
Docker

FROM fascinated/docker-images:node-latest
EXPOSE 5000
RUN git clone https://git.fascinated.cc/Fascinated/scoresaber-reloaded.git
RUN mv scoresaber-reloaded/.git ./
RUN rm -rf scoresaber-reloaded
COPY . .
RUN pwd
RUN ls -a
RUN npm install
RUN npm run build
CMD npm run start