All checks were successful
Pipeline main branch / test (push) Successful in 53s
13 lines
214 B
Docker
13 lines
214 B
Docker
FROM python:3.12
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY ./start.py .
|
|
COPY ./app ./app
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "start:app"]
|