jlelse
/
TikTokJsonFeed
Archived
1
Fork 0
This repository has been archived on 2020-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
TikTokJsonFeed/Dockerfile

11 lines
128 B
Docker
Raw Permalink Normal View History

2020-05-06 18:27:50 +00:00
FROM node:14-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY index.js .
EXPOSE 8080
CMD [ "node", "index.js" ]