14 lines
159 B
Docker
14 lines
159 B
Docker
FROM python:3.9
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app/
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
RUN python initial.py
|
|
|
|
EXPOSE 5050
|
|
|
|
CMD ["python3", "app.py"]
|