Md / Dockerfile
abbytech007's picture
Update Dockerfile
983c91a verified
raw
history blame contribute delete
260 Bytes
FROM node:20
USER node
RUN git clone https://github.com/abbybots141/Queen_Maria 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" ]