14 lines
159 B
Docker
14 lines
159 B
Docker
|
FROM python:3.8-slim
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . /app
|
||
|
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
EXPOSE 5001
|
||
|
|
||
|
ENV NAME service_b
|
||
|
|
||
|
CMD ["python", "app.py"]
|