12 lines
175 B
Docker
12 lines
175 B
Docker
FROM --platform=$TARGETPLATFORM python:3.11 AS server
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt /app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY ./app.py /app
|
|
|
|
CMD python app.py
|