-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having difficulties with the exfiltration-server pull #10
Comments
Found the issue. The latest Alpine (v3.19) doesn't have the py-pip package. My workaround is to update the Dockerfile line 1 to: |
I'm getting an instruction error after changing line 1. Would you mind posting your Dockerfile contents please? |
Hi, I also encountered that access to pull docker was denied. Did you solve it? |
`FROM python:3.7.17-slim-bullseye RUN apt update COPY requirements.txt . EXPOSE 8040:8040 |
install a python 3.7.17 works for me. easy way is using pyenv. as for alpine. this dockerfile works for me. RUN apk update #RUN pip install flask WORKDIR /app COPY server.py . USER nobody CMD python3 server.py |
After updating the requirements.txt document for the initial install / setup of shennina, I attempted to start the exfiltration-server, following the below steps:
cd ./exfiltration-server
./run-server.sh
I am having the following issue pop up:
"
=> ERROR [ 5/11] RUN pip3 install flask 1.4s
Dockerfile:7
5 | RUN apk add py-pip
6 |
7 | >>> RUN pip3 install flask
8 |
9 | WORKDIR /app
ERROR: failed to solve: process "/bin/sh -c pip3 install flask" did not complete successfully: exit code: 1
Unable to find image 'exfiltration-server:latest' locally
docker: Error response from daemon: pull access denied for exfiltration-server, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
See 'docker run --help'.
"
Any ideas on how I might solve this issue?
The text was updated successfully, but these errors were encountered: