Compare commits
No commits in common. "6b57266ac3b284ddff3614cf6b46100e25b80771" and "484029d3ca3a84402eba496e2dbca76feb7fc941" have entirely different histories.
6b57266ac3
...
484029d3ca
3 changed files with 0 additions and 31 deletions
|
@ -1,5 +0,0 @@
|
|||
FROM python:alpine
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN pip install -r requirements.txt
|
||||
CMD ["python", "client.py"]
|
|
@ -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
|
|
@ -1,7 +0,0 @@
|
|||
FROM python:alpine
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN pip install -r requirements.txt
|
||||
EXPOSE 80
|
||||
EXPOSE 5000
|
||||
CMD ["python", "__init__.py"]
|
Loading…
Add table
Add a link
Reference in a new issue