49d5c08
f7d9db1
49d5c08
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM node:18-slim
WORKDIR /app
RUN apt update
RUN apt install git -y
RUN git clone https://github.com/Nekohy/pieces-os.git .
RUN npm ci --only=production
EXPOSE 8787
CMD ["node", "api/index.js"] |