updated skeleton with true data
This commit is contained in:
@ -1 +1,11 @@
|
||||
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"]
|
||||
|
||||
Reference in New Issue
Block a user