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 9672c419b7
Some checks failed
deploy / deploy (push) Failing after 7s
pls copy .git
2023-10-18 01:34:57 +01:00

15 lines
190 B
Docker

FROM fascinated/docker-images:node-latest
EXPOSE 80
ENV HOST=0.0.0.0
COPY .git /home/container/.git
COPY . /home/container
RUN ls -a
RUN npm install
RUN npm run build
CMD npm run start