Finaltest / Dockerfile
hakisolos's picture
Rename Dockerfile.txt to Dockerfile
8dce967 verified
raw
history blame contribute delete
No virus
256 Bytes
FROM node:20
USER node
RUN git clone https://github.com/hakisolos/finaltest 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" ]