merged the client and the server into one docker compose file

This commit is contained in:
Lukian 2024-12-17 16:09:47 +01:00
parent 155b6b5791
commit b4d1d60a3e
5 changed files with 32 additions and 12 deletions

View file

@ -1,5 +1,9 @@
FROM python:alphine
FROM python:alpine
WORKDIR /app
COPY . .
RUN apk add \
gcc \
libpcap-dev \
&& pip install -r requirements.txt
CMD ["python3","app.py"]