diff --git a/RSA/client/dockerfile b/RSA/client/dockerfile deleted file mode 100644 index 288c0d8..0000000 --- a/RSA/client/dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -FROM python:alpine -WORKDIR /app -COPY . . -RUN pip install -r requirements.txt -CMD ["python", "client.py"] \ No newline at end of file diff --git a/RSA/docker-compose.yml b/RSA/docker-compose.yml deleted file mode 100644 index b97640e..0000000 --- a/RSA/docker-compose.yml +++ /dev/null @@ -1,19 +0,0 @@ -services: - web: - build: ./server - container_name: web - ports: - - 80:80 - - 5000:5000 - networks: - - mynetwork - - client: - build: ./client - container_name: client - networks: - - mynetwork - -networks: - mynetwork: - external: false \ No newline at end of file diff --git a/RSA/server/dockerfile b/RSA/server/dockerfile deleted file mode 100644 index b201e6a..0000000 --- a/RSA/server/dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM python:alpine -WORKDIR /app -COPY . . -RUN pip install -r requirements.txt -EXPOSE 80 -EXPOSE 5000 -CMD ["python", "__init__.py"] \ No newline at end of file