NodeLink / Dockerfile
UnschooledGamer's picture
Update Dockerfile
3ee544b verified
raw
history blame contribute delete
281 Bytes
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"]