Files
tiktok-dl/Dockerfile
2025-09-21 02:24:09 +07:00

17 lines
217 B
Docker

FROM node:22-alpine3.22
RUN apk update
# Prepare
RUN mkdir -p /home/tiktok-dl
COPY . /home/tiktok-dl
WORKDIR /home/tiktok-dl
# Build
RUN yarn install
RUN yarn build
# Expose port
EXPOSE 3000
CMD ["yarn", "start"]