20 lines
302 B
Docker
20 lines
302 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 . .
|
|
|
|
RUN pwd
|
|
|
|
RUN ls -a
|
|
|
|
RUN npm install
|
|
|
|
RUN npm run build
|
|
|
|
CMD npm run start |