Skip to content

Commit

Permalink
Fixing alpine version
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Zago <[email protected]>
  • Loading branch information
rafaelvzago committed Dec 12, 2024
1 parent af1daaa commit 5f33719
Showing 1 changed file with 24 additions and 25 deletions.
49 changes: 24 additions & 25 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -44,4 +43,4 @@ COPY app.py /app.py
EXPOSE 5000

# Run the Flask app
CMD ["python3", "/app.py"]
CMD ["python3", "/app.py"]

0 comments on commit 5f33719

Please sign in to comment.