2025-08-13 20:10:39 -07:00
|
|
|
FROM node:20-alpine
|
2024-08-11 10:25:12 -07:00
|
|
|
|
2025-08-15 17:12:23 -07:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
LABEL org.opencontainers.image.title="Holy Unblocker LTS" \
|
|
|
|
|
org.opencontainers.image.description="An effective, privacy-focused web proxy service" \
|
2025-09-24 12:45:24 -07:00
|
|
|
org.opencontainers.image.version="6.9.3" \
|
2025-08-23 15:54:20 -07:00
|
|
|
org.opencontainers.image.authors="Holy Unblocker Team" \
|
2025-08-15 17:12:23 -07:00
|
|
|
org.opencontainers.image.source="https://github.com/QuiteAFancyEmerald/Holy-Unblocker/"
|
2024-08-11 10:25:12 -07:00
|
|
|
|
2025-08-31 10:25:45 -07:00
|
|
|
RUN apk add --no-cache tor bash
|
|
|
|
|
|
2025-08-13 23:18:35 -05:00
|
|
|
COPY . .
|
|
|
|
|
|
2025-08-13 20:10:39 -07:00
|
|
|
RUN npm run fresh-install
|
2025-08-13 23:06:16 -05:00
|
|
|
RUN npm run build
|
|
|
|
|
|
2025-08-31 10:25:45 -07:00
|
|
|
EXPOSE 8080 9050 9051
|
|
|
|
|
|
|
|
|
|
COPY serve.sh /serve.sh
|
|
|
|
|
RUN chmod +x /serve.sh
|
2024-08-11 10:25:12 -07:00
|
|
|
|
2025-08-31 10:25:45 -07:00
|
|
|
CMD ["/serve.sh"]
|