twikoo / Dockerfile
Q78KG's picture
Create Dockerfile
76183e3 verified
raw
history blame
134 Bytes
FROM node:lts-slim AS build
RUN useradd -m app
USER root
RUN npm i -g tkserver
USER app
WORKDIR /home/app/twikoo
CMD ["tkserver"]