diff --git a/Dockerfile b/Dockerfile index 05ff260..5063e90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,29 +1,28 @@ -FROM alpine:latest +FROM alpine:3.16 -# Install base tools without tshark RUN apk update && apk add --no-cache \ - bash \ - curl \ - wget \ - tar \ - traceroute \ - openssl \ - iperf \ - busybox-extras \ - nmap \ - netcat-openbsd \ - tcpdump \ - mtr \ - socat \ - bind-tools \ - iproute2 \ - openssh-client \ - python3 \ - procps \ - coreutils \ - mongodb-tools \ - postgresql-client \ - py3-flask + bash \ + curl \ + wget \ + tar \ + traceroute \ + openssl \ + iperf \ + busybox-extras \ + nmap \ + netcat-openbsd \ + tcpdump \ + mtr \ + socat \ + bind-tools \ + iproute2 \ + openssh-client \ + python3 \ + procps \ + coreutils \ + mongodb-tools \ + postgresql-client \ + py3-flask # Install Go 1.22.8 manually to /usr/local/go ENV GO_VERSION=1.22.8 @@ -44,4 +43,4 @@ COPY app.py /app.py EXPOSE 5000 # Run the Flask app -CMD ["python3", "/app.py"] \ No newline at end of file +CMD ["python3", "/app.py"]