Compare commits

..

No commits in common. "6b57266ac3b284ddff3614cf6b46100e25b80771" and "484029d3ca3a84402eba496e2dbca76feb7fc941" have entirely different histories.

3 changed files with 0 additions and 31 deletions

View file

@ -1,5 +0,0 @@
FROM python:alpine
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "client.py"]

View file

@ -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

View file

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