Add Docker support for client and server with docker-compose configuration

This commit is contained in:
Lukian 2025-01-21 11:48:18 +01:00
parent 07f9744a14
commit 3ec5483b3c
3 changed files with 31 additions and 0 deletions

7
RSA/server/dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM python:alpine
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 80
EXPOSE 5000
CMD ["python", "__init__.py"]