mirror of
https://github.com/simon987/bingo.git
synced 2025-12-16 08:49:04 +00:00
dockerize...
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM python:3.8
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ADD requirements.txt /app/requirements.txt
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
ENTRYPOINT ["python", "app.py"]
|
||||
|
||||
EXPOSE 80
|
||||
COPY . /app
|
||||
Reference in New Issue
Block a user