11 lines
212 B
Docker
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"]
|