12 lines
243 B
Docker
12 lines
243 B
Docker
FROM python:3.11-slim AS builder
|
|
WORKDIR /app
|
|
COPY requirements.gateway.txt .
|
|
RUN pip install -r requirements.gateway.txt
|
|
COPY . .
|
|
|
|
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY --from=builder /usr/local /usr/local
|
|
COPY . .
|
|
CMD ["python","main.py"]
|