Spaces:
Sleeping
Sleeping
from node:current-alpine3.18 | |
# Set home to the user's home directory | |
WORKDIR $HOME/app | |
# required pkgs with alpine | |
RUN apk add --no-cache git ffmpeg | |
RUN chmod 777 . | |
RUN git clone https://github.com/PerformanC/NodeLink.git . --depth=1 | |
RUN npm i | |
ENTRYPOINT ["npm"] | |
CMD ["start"] |