You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem with the mod_wireguardDockerfile while running build.sh. The image is alpine but you are using apt instead of apk for installing packages.
=> ERROR [2/8] RUN apt update && apt install -y python3 tcpdump 0.4s
------
> [2/8] RUN apt update && apt install -y python3 tcpdump:
0.382 /bin/sh: apt: not found
------
Dockerfile:3
--------------------
1 | FROM lscr.io/linuxserver/wireguard
2 | LABEL Description="This image is used to provide the AI VPN WireGuard VPN." Vendor="Civilsphere Project" Version="0.1" Maintainer="[email protected]"
3 | >>> RUN apt update && apt install -y python3 tcpdump
4 | RUN apt install -y python3-pip
5 | ADD . /code
--------------------
ERROR: failed to solve: process "/bin/sh -c apt update && apt install -y python3 tcpdump" did not complete successfully: exit code: 127
The text was updated successfully, but these errors were encountered:
There is a problem with the
mod_wireguard
Dockerfile while runningbuild.sh
. The image is alpine but you are usingapt
instead ofapk
for installing packages.The text was updated successfully, but these errors were encountered: