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

9 lines
268 B
Docker

FROM node
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y python3 python3-pip && rm -rf /var/lib/apt/*
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run prepack
RUN npm link
ENTRYPOINT [ "apt-stream", "server", "--data", "/data" ]