15 lines
206 B
Docker
15 lines
206 B
Docker
FROM python:3.11
|
|
|
|
COPY requirements.txt /opt/requirements.txt
|
|
|
|
RUN pip3 install -r /opt/requirements.txt
|
|
|
|
COPY . /opt/server
|
|
|
|
WORKDIR /opt/server
|
|
|
|
ENV PYTHONPATH=/opt
|
|
|
|
CMD ["python", "app.py"]
|
|
|
|
EXPOSE 5001
|