favicon/Dockerfile
2025-03-26 23:55:01 +08:00

11 lines
212 B
Docker

FROM arm64v8/node:latest
RUN apt update
#RUN apt upgrade -y
RUN apt install nano
RUN git clone https://github.com/ruisaraiva19/favycon.git
WORKDIR /favycon
RUN yarn install
RUN yarn build
CMD ["yarn","start"]