Add Docker support for client and server with docker-compose configuration
This commit is contained in:
parent
07f9744a14
commit
3ec5483b3c
3 changed files with 31 additions and 0 deletions
7
RSA/server/dockerfile
Normal file
7
RSA/server/dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue