Added Dockerfile

This commit is contained in:
Chris Plaatjes 2023-02-13 19:18:34 -05:00
parent 4fa6863b0d
commit 1f15b65bf5

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM mcr.microsoft.com/dotnet/runtime:6.0-alpine3
WORKDIR /app/teletok
RUN apk update && apk add --update nodejs nodejs-npm
RUN npm i -g tiktok-scraper
COPY bin/Debug/net6.0/* /app/teletok/
CMD [ "TeleTok" ]