forked from gav/es-bot
MVP
This commit is contained in:
14
nft_svc/Dockerfile
Normal file
14
nft_svc/Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
FROM python:3.9
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY ./requirements.txt /app/requirements.txt
|
||||
|
||||
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
||||
|
||||
COPY . /app
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
ENTRYPOINT [ "flask" ]
|
||||
CMD ["run", "--host=0.0.0.0", "--port=5000"]
|
Reference in New Issue
Block a user