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
Liam 0dd5c71d33
Some checks failed
deploy / deploy (push) Failing after 7s
part 2
2023-10-18 01:29:27 +01:00

21 lines
357 B
Docker

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