Built the Sentinel Tab
This commit is contained in:
16
infrastructure/ops_control_plane/app/Dockerfile
Normal file
16
infrastructure/ops_control_plane/app/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
ENV PYTHONDONTWRITEBYTECODE=1
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt /app/requirements.txt
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends openssh-client curl ca-certificates \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
RUN pip install --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
COPY ops_control_plane /app/ops_control_plane
|
||||
|
||||
CMD ["python", "-m", "ops_control_plane.main"]
|
||||
Reference in New Issue
Block a user