-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (15 loc) · 565 Bytes
/
Dockerfile
File metadata and controls
23 lines (15 loc) · 565 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM node:20-alpine
WORKDIR /app
LABEL org.opencontainers.image.title="InvisiProxy LTS" \
org.opencontainers.image.description="An effective, privacy-focused web proxy service" \
org.opencontainers.image.version="6.9.5" \
org.opencontainers.image.authors="InvisiProxy Team" \
org.opencontainers.image.source="https://github.com/QuiteAFancyEmerald/InvisiProxy/"
RUN apk add --no-cache tor bash
COPY . .
RUN npm run fresh-install
RUN npm run build
EXPOSE 8080 9050 9051
COPY serve.sh /serve.sh
RUN chmod +x /serve.sh
CMD ["/serve.sh"]