This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ppp2-relay/Dockerfile
T
2023-07-12 17:00:29 +02:00

7 lines
72 B
Docker

FROM node:slim
COPY . /app
WORKDIR /app
RUN npm i
CMD ["npm", "start"]