2024-03-10 17:07:47 +01:00
|
|
|
FROM node:16-alpine
|
2022-11-30 20:13:57 +01:00
|
|
|
ADD aptly-publish /bin/
|
|
|
|
RUN chmod +x /bin/aptly-publish
|
2024-03-10 17:07:47 +01:00
|
|
|
RUN apk -Uuv add python3 py3-requests py3-urllib3 py3-pip bash
|
2022-05-02 00:39:47 +02:00
|
|
|
RUN pip install debian-parser
|
2022-11-30 20:13:57 +01:00
|
|
|
ENTRYPOINT /bin/aptly-publish
|