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

17 lines
195 B
Docker
Raw Permalink Normal View History

2023-10-17 23:04:35 +00:00
FROM fascinated/docker-images:node-latest
2023-10-18 00:25:39 +00:00
EXPOSE 80
ENV HOST=0.0.0.0
2023-10-17 23:04:35 +00:00
2023-10-18 01:04:30 +00:00
ARG GIT_REV
ENV GIT_REV ${GIT_REV}
2023-10-18 00:31:31 +00:00
COPY . /home/container
2023-10-17 23:12:38 +00:00
2023-10-17 23:21:39 +00:00
RUN ls -a
2023-10-17 23:08:40 +00:00
RUN npm install
2023-10-17 23:04:35 +00:00
2023-10-17 23:08:40 +00:00
RUN npm run build
2023-10-17 23:04:35 +00:00
2023-10-17 23:08:40 +00:00
CMD npm run start