build prospect intelligence platform MVP
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
FROM python:3.13-alpine
|
||||
|
||||
ENV PYTHONDONTWRITEBYTECODE=1 \
|
||||
PYTHONUNBUFFERED=1
|
||||
|
||||
RUN addgroup -S app && adduser -S -G app app
|
||||
WORKDIR /srv
|
||||
COPY infrastructure/docker/web/index.html /srv/index.html
|
||||
COPY infrastructure/docker/web/healthz /srv/healthz
|
||||
RUN chown -R app:app /srv
|
||||
USER app
|
||||
EXPOSE 8080
|
||||
CMD ["python", "-m", "http.server", "8080", "--bind", "0.0.0.0", "--directory", "/srv"]
|
||||
@@ -0,0 +1 @@
|
||||
ok
|
||||
@@ -0,0 +1,6 @@
|
||||
<!doctype html>
|
||||
<html lang="en"><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Prospect Platform</title>
|
||||
<h1>Prospect Platform</h1>
|
||||
<p>MVP static web container is running.</p>
|
||||
<p>Automated outreach is <strong>disabled</strong>.</p>
|
||||
Reference in New Issue
Block a user