We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FROM python:3.11-alpine
1 parent 031faed commit 04f2853Copy full SHA for 04f2853
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ghcr.io/abhinavsingh/proxy.py:base
+FROM ghcr.io/abhinavsingh/proxy.py:base as builder
2
3
LABEL com.abhinavsingh.name="abhinavsingh/proxy.py" \
4
org.opencontainers.image.title="proxy.py" \
@@ -39,6 +39,9 @@ RUN /proxy/venv/bin/pip install --no-compile --no-cache-dir \
39
rm -rf /root/.cache/ && \
40
pip uninstall -y pip
41
42
+FROM python:3.11-alpine
43
+COPY --from=builder /README.md /README.md
44
+COPY --from=builder /proxy /proxy
45
ENV PATH="/proxy/venv/bin:${PATH}"
46
EXPOSE 8899/tcp
47
ENTRYPOINT [ "proxy" ]
0 commit comments