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 abedce773e
All checks were successful
deploy / deploy (push) Successful in 51s
update action
2023-10-18 02:04:30 +01:00

17 lines
195 B
Docker

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