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

9 lines
109 B
Docker
Raw Normal View History

2023-10-18 00:04:35 +01:00
FROM fascinated/docker-images:node-latest
EXPOSE 5000
2023-10-18 00:08:40 +01:00
RUN npm install
2023-10-18 00:04:35 +01:00
2023-10-18 00:08:40 +01:00
RUN npm run build
2023-10-18 00:04:35 +01:00
2023-10-18 00:08:40 +01:00
CMD npm run start