This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
PowerTools/Dockerfile

16 lines
222 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY --chown=node:node ./server ./server
COPY --chown=node:node ./package.json ./package.json
RUN npm install
RUN chown -R node:node /app
USER node
EXPOSE 7182
CMD ["node", "server"]