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

23 lines
410 B
Docker
Raw Normal View History

2023-10-18 00:04:35 +01:00
FROM fascinated/docker-images:node-latest
2023-10-18 01:25:39 +01:00
EXPOSE 80
ENV HOST=0.0.0.0
2023-10-18 00:04:35 +01:00
2023-10-18 01:26:13 +01:00
# RUN git clone https://git.fascinated.cc/Fascinated/scoresaber-reloaded.git
# RUN mv scoresaber-reloaded/.git ./
# RUN rm -rf scoresaber-reloaded
2023-10-18 00:28:22 +01:00
2023-10-18 01:30:02 +01:00
RUN ls -a /workspace/Fascinated/scoresaber-reloaded
2023-10-18 00:09:10 +01:00
COPY . .
2023-10-18 01:29:27 +01:00
COPY /workspace/Fascinated/scoresaber-reloaded/.git ./
2023-10-18 00:09:10 +01:00
2023-10-18 00:12:38 +01:00
RUN pwd
2023-10-18 00:21:39 +01:00
RUN ls -a
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