13 lines
186 B
Docker
13 lines
186 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --no-cache-dir flask gunicorn
|
|
|
|
COPY app.py .
|
|
COPY mapping.json .
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:3000", "app:app"]
|