mirror of
https://github.com/codex-storage/codex-frontend.git
synced 2025-03-01 10:40:52 +00:00
9 lines
188 B
Docker
9 lines
188 B
Docker
FROM python:3.9
|
|
WORKDIR /api
|
|
|
|
COPY api/requirements.txt api/api.py ./
|
|
RUN pip install -r ./requirements.txt
|
|
ENV FLASK_ENV production
|
|
|
|
EXPOSE 5000
|
|
CMD ["gunicorn", "-b", ":5000", "api:app"] |