Bald / Dockerfile
Zingotv's picture
Upload 3 files
2638f57 verified
raw
history blame
No virus
260 Bytes
FROM node:20
USER node
RUN git clone https://github.com/AngeloDivine/Queen_Alya home/node/blue
WORKDIR /home/node/blue
RUN chmod -R 777 /home/node/blue/
RUN yarn install && yarn add http
COPY server.js .
COPY start.sh .
CMD ["bash","start.sh" ]