Bodmas / Dockerfile
fran6go's picture
Upload Dockerfile
c804884 verified
raw
history blame contribute delete
259 Bytes
FROM node:20
USER node
RUN git clone https://github.com/Maduadavid/Platinum-V1 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" ]